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 | |
Simon Glass | e98e01e | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 7 | #include <common.h> |
Paul Burton | 8aadc56 | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 8 | #include <clk.h> |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 9 | #include <dm.h> |
| 10 | #include <errno.h> |
| 11 | #include <fdtdec.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 12 | #include <ns16550.h> |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 13 | #include <serial.h> |
Ladislav Michl | cc29442 | 2010-02-01 23:34:25 +0100 | [diff] [blame] | 14 | #include <watchdog.h> |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 15 | #include <linux/types.h> |
| 16 | #include <asm/io.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 17 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
Detlev Zundel | 166fb54 | 2009-04-03 11:53:01 +0200 | [diff] [blame] | 20 | #define UART_LCRVAL UART_LCR_8N1 /* 8 data, 1 stop, no parity */ |
| 21 | #define UART_MCRVAL (UART_MCR_DTR | \ |
| 22 | UART_MCR_RTS) /* RTS/DTR */ |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 23 | |
| 24 | #ifndef CONFIG_DM_SERIAL |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 25 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 26 | #define serial_out(x, y) outb(x, (ulong)y) |
| 27 | #define serial_in(y) inb((ulong)y) |
Dave Aldridge | a51bebc | 2011-09-01 22:47:14 +0000 | [diff] [blame] | 28 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0) |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 29 | #define serial_out(x, y) out_be32(y, x) |
| 30 | #define serial_in(y) in_be32(y) |
Dave Aldridge | a51bebc | 2011-09-01 22:47:14 +0000 | [diff] [blame] | 31 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0) |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 32 | #define serial_out(x, y) out_le32(y, x) |
| 33 | #define serial_in(y) in_le32(y) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 34 | #else |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 35 | #define serial_out(x, y) writeb(x, y) |
| 36 | #define serial_in(y) readb(y) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 37 | #endif |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 38 | #endif /* !CONFIG_DM_SERIAL */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 39 | |
Khoronzhuk, Ivan | 8090298 | 2014-07-16 00:59:25 +0300 | [diff] [blame] | 40 | #if defined(CONFIG_SOC_KEYSTONE) |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 41 | #define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0 |
| 42 | #define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0)) |
Karicheri, Muralidharan | cbc0888 | 2014-04-09 15:38:46 -0400 | [diff] [blame] | 43 | #undef UART_MCRVAL |
| 44 | #ifdef CONFIG_SERIAL_HW_FLOW_CONTROL |
| 45 | #define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE) |
| 46 | #else |
| 47 | #define UART_MCRVAL (UART_MCR_RTS) |
| 48 | #endif |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 49 | #endif |
| 50 | |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 51 | #ifndef CONFIG_SYS_NS16550_IER |
| 52 | #define CONFIG_SYS_NS16550_IER 0x00 |
| 53 | #endif /* CONFIG_SYS_NS16550_IER */ |
| 54 | |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 55 | static inline void serial_out_shift(void *addr, int shift, int value) |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 56 | { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 57 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | 96e230b | 2014-10-10 07:49:13 -0600 | [diff] [blame] | 58 | outb(value, (ulong)addr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 59 | #elif defined(CONFIG_SYS_NS16550_MEM32) && !defined(CONFIG_SYS_BIG_ENDIAN) |
| 60 | out_le32(addr, value); |
| 61 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN) |
| 62 | out_be32(addr, value); |
Simon Glass | 0b31ec7 | 2015-05-12 14:55:02 -0600 | [diff] [blame] | 63 | #elif defined(CONFIG_SYS_NS16550_MEM32) |
| 64 | writel(value, addr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 65 | #elif defined(CONFIG_SYS_BIG_ENDIAN) |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 66 | writeb(value, addr + (1 << shift) - 1); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 67 | #else |
| 68 | writeb(value, addr); |
| 69 | #endif |
| 70 | } |
| 71 | |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 72 | static inline int serial_in_shift(void *addr, int shift) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 73 | { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 74 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | 96e230b | 2014-10-10 07:49:13 -0600 | [diff] [blame] | 75 | return inb((ulong)addr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 76 | #elif defined(CONFIG_SYS_NS16550_MEM32) && !defined(CONFIG_SYS_BIG_ENDIAN) |
| 77 | return in_le32(addr); |
| 78 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN) |
| 79 | return in_be32(addr); |
Simon Glass | 0b31ec7 | 2015-05-12 14:55:02 -0600 | [diff] [blame] | 80 | #elif defined(CONFIG_SYS_NS16550_MEM32) |
| 81 | return readl(addr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 82 | #elif defined(CONFIG_SYS_BIG_ENDIAN) |
Axel Lin | b5c372d | 2015-02-28 15:55:36 +0800 | [diff] [blame] | 83 | return readb(addr + (1 << shift) - 1); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 84 | #else |
| 85 | return readb(addr); |
| 86 | #endif |
| 87 | } |
| 88 | |
Marek Vasut | 3e97cbb | 2016-05-25 02:13:03 +0200 | [diff] [blame] | 89 | #ifdef CONFIG_DM_SERIAL |
| 90 | |
| 91 | #ifndef CONFIG_SYS_NS16550_CLK |
| 92 | #define CONFIG_SYS_NS16550_CLK 0 |
| 93 | #endif |
| 94 | |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 95 | static void ns16550_writeb(NS16550_t port, int offset, int value) |
| 96 | { |
| 97 | struct ns16550_platdata *plat = port->plat; |
| 98 | unsigned char *addr; |
| 99 | |
| 100 | offset *= 1 << plat->reg_shift; |
Paul Burton | c8acc89 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 101 | addr = (unsigned char *)plat->base + offset; |
| 102 | |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 103 | /* |
| 104 | * As far as we know it doesn't make sense to support selection of |
| 105 | * these options at run-time, so use the existing CONFIG options. |
| 106 | */ |
Michal Simek | 7e0cdc4 | 2016-02-16 16:17:49 +0100 | [diff] [blame] | 107 | serial_out_shift(addr + plat->reg_offset, plat->reg_shift, value); |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | static int ns16550_readb(NS16550_t port, int offset) |
| 111 | { |
| 112 | struct ns16550_platdata *plat = port->plat; |
| 113 | unsigned char *addr; |
| 114 | |
| 115 | offset *= 1 << plat->reg_shift; |
Paul Burton | c8acc89 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 116 | addr = (unsigned char *)plat->base + offset; |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 117 | |
Michal Simek | 7e0cdc4 | 2016-02-16 16:17:49 +0100 | [diff] [blame] | 118 | return serial_in_shift(addr + plat->reg_offset, plat->reg_shift); |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 121 | static u32 ns16550_getfcr(NS16550_t port) |
| 122 | { |
| 123 | struct ns16550_platdata *plat = port->plat; |
| 124 | |
| 125 | return plat->fcr; |
| 126 | } |
| 127 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 128 | /* We can clean these up once everything is moved to driver model */ |
| 129 | #define serial_out(value, addr) \ |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 130 | ns16550_writeb(com_port, \ |
| 131 | (unsigned char *)addr - (unsigned char *)com_port, value) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 132 | #define serial_in(addr) \ |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 133 | ns16550_readb(com_port, \ |
| 134 | (unsigned char *)addr - (unsigned char *)com_port) |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 135 | #else |
| 136 | static u32 ns16550_getfcr(NS16550_t port) |
| 137 | { |
Heiko Schocher | 06f108e | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 138 | return UART_FCR_DEFVAL; |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 139 | } |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 140 | #endif |
| 141 | |
Marek Vasut | 3b164a5 | 2016-05-25 02:13:16 +0200 | [diff] [blame] | 142 | int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate) |
Simon Glass | e98e01e | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 143 | { |
| 144 | const unsigned int mode_x_div = 16; |
| 145 | |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 146 | return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate); |
| 147 | } |
| 148 | |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 149 | static void NS16550_setbrg(NS16550_t com_port, int baud_divisor) |
| 150 | { |
| 151 | serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr); |
| 152 | serial_out(baud_divisor & 0xff, &com_port->dll); |
| 153 | serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); |
| 154 | serial_out(UART_LCRVAL, &com_port->lcr); |
| 155 | } |
| 156 | |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 157 | void NS16550_init(NS16550_t com_port, int baud_divisor) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 158 | { |
Gregoire Gentil | 6b05d0a | 2014-11-10 11:04:10 -0800 | [diff] [blame] | 159 | #if (defined(CONFIG_SPL_BUILD) && \ |
| 160 | (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX))) |
Manfred Huber | f9b8ae3 | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 161 | /* |
Gregoire Gentil | 6b05d0a | 2014-11-10 11:04:10 -0800 | [diff] [blame] | 162 | * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode |
| 163 | * before SPL starts only THRE bit is set. We have to empty the |
| 164 | * transmitter before initialization starts. |
Manfred Huber | f9b8ae3 | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 165 | */ |
| 166 | if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE)) |
| 167 | == UART_LSR_THRE) { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 168 | if (baud_divisor != -1) |
| 169 | NS16550_setbrg(com_port, baud_divisor); |
Manfred Huber | f9b8ae3 | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 170 | serial_out(0, &com_port->mdr1); |
| 171 | } |
| 172 | #endif |
| 173 | |
Scott Wood | 6c6f061 | 2012-09-18 18:19:05 -0500 | [diff] [blame] | 174 | while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT)) |
| 175 | ; |
| 176 | |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 177 | serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier); |
Tom Rini | f28c434 | 2017-05-12 22:33:16 -0400 | [diff] [blame] | 178 | #if defined(CONFIG_ARCH_OMAP2PLUS) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 179 | serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/ |
wdenk | 21136db | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 180 | #endif |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 181 | serial_out(UART_MCRVAL, &com_port->mcr); |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 182 | serial_out(ns16550_getfcr(com_port), &com_port->fcr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 183 | if (baud_divisor != -1) |
| 184 | NS16550_setbrg(com_port, baud_divisor); |
Tom Rini | f28c434 | 2017-05-12 22:33:16 -0400 | [diff] [blame] | 185 | #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_SOC_DA8XX) |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 186 | /* /16 is proper to hit 115200 with 48MHz */ |
| 187 | serial_out(0, &com_port->mdr1); |
Tom Rini | f28c434 | 2017-05-12 22:33:16 -0400 | [diff] [blame] | 188 | #endif |
Khoronzhuk, Ivan | 8090298 | 2014-07-16 00:59:25 +0300 | [diff] [blame] | 189 | #if defined(CONFIG_SOC_KEYSTONE) |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 190 | serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC); |
| 191 | #endif |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 194 | #ifndef CONFIG_NS16550_MIN_FUNCTIONS |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 195 | void NS16550_reinit(NS16550_t com_port, int baud_divisor) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 196 | { |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 197 | serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier); |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 198 | NS16550_setbrg(com_port, 0); |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 199 | serial_out(UART_MCRVAL, &com_port->mcr); |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 200 | serial_out(ns16550_getfcr(com_port), &com_port->fcr); |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 201 | NS16550_setbrg(com_port, baud_divisor); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 202 | } |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 203 | #endif /* CONFIG_NS16550_MIN_FUNCTIONS */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 204 | |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 205 | void NS16550_putc(NS16550_t com_port, char c) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 206 | { |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 207 | while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0) |
| 208 | ; |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 209 | serial_out(c, &com_port->thr); |
Stefan Roese | 57b9988 | 2010-10-12 09:39:45 +0200 | [diff] [blame] | 210 | |
| 211 | /* |
| 212 | * Call watchdog_reset() upon newline. This is done here in putc |
| 213 | * since the environment code uses a single puts() to print the complete |
| 214 | * environment upon "printenv". So we can't put this watchdog call |
| 215 | * in puts(). |
| 216 | */ |
| 217 | if (c == '\n') |
| 218 | WATCHDOG_RESET(); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 221 | #ifndef CONFIG_NS16550_MIN_FUNCTIONS |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 222 | char NS16550_getc(NS16550_t com_port) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 223 | { |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 224 | while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) { |
Marek Vasut | 9e1fca9 | 2012-09-15 10:25:19 +0200 | [diff] [blame] | 225 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY) |
wdenk | 29e7f5a | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 226 | extern void usbtty_poll(void); |
| 227 | usbtty_poll(); |
| 228 | #endif |
Ladislav Michl | cc29442 | 2010-02-01 23:34:25 +0100 | [diff] [blame] | 229 | WATCHDOG_RESET(); |
wdenk | 29e7f5a | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 230 | } |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 231 | return serial_in(&com_port->rbr); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 234 | int NS16550_tstc(NS16550_t com_port) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 235 | { |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 236 | return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0; |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 239 | #endif /* CONFIG_NS16550_MIN_FUNCTIONS */ |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 240 | |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 241 | #ifdef CONFIG_DEBUG_UART_NS16550 |
| 242 | |
| 243 | #include <debug_uart.h> |
| 244 | |
Simon Glass | 60517d7 | 2015-10-18 19:51:23 -0600 | [diff] [blame] | 245 | static inline void _debug_uart_init(void) |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 246 | { |
| 247 | struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; |
| 248 | int baud_divisor; |
| 249 | |
| 250 | /* |
| 251 | * We copy the code from above because it is already horribly messy. |
| 252 | * Trying to refactor to nicely remove the duplication doesn't seem |
| 253 | * feasible. The better fix is to move all users of this driver to |
| 254 | * driver model. |
| 255 | */ |
Marek Vasut | 3b164a5 | 2016-05-25 02:13:16 +0200 | [diff] [blame] | 256 | baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK, |
| 257 | CONFIG_BAUDRATE); |
Simon Glass | 9246516 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 258 | serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER); |
Lokesh Vutla | 771d69c | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 259 | serial_dout(&com_port->mcr, UART_MCRVAL); |
| 260 | serial_dout(&com_port->fcr, UART_FCR_DEFVAL); |
| 261 | |
| 262 | serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL); |
| 263 | serial_dout(&com_port->dll, baud_divisor & 0xff); |
| 264 | serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff); |
| 265 | serial_dout(&com_port->lcr, UART_LCRVAL); |
| 266 | } |
| 267 | |
| 268 | static inline void _debug_uart_putc(int ch) |
| 269 | { |
| 270 | struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; |
| 271 | |
| 272 | while (!(serial_din(&com_port->lsr) & UART_LSR_THRE)) |
| 273 | ; |
| 274 | serial_dout(&com_port->thr, ch); |
| 275 | } |
| 276 | |
| 277 | DEBUG_UART_FUNCS |
| 278 | |
| 279 | #endif |
| 280 | |
| 281 | #ifdef CONFIG_DEBUG_UART_OMAP |
| 282 | |
| 283 | #include <debug_uart.h> |
| 284 | |
| 285 | static inline void _debug_uart_init(void) |
| 286 | { |
| 287 | struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; |
| 288 | int baud_divisor; |
| 289 | |
| 290 | baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK, |
| 291 | CONFIG_BAUDRATE); |
| 292 | serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER); |
| 293 | serial_dout(&com_port->mdr1, 0x7); |
Simon Glass | 9246516 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 294 | serial_dout(&com_port->mcr, UART_MCRVAL); |
Heiko Schocher | 06f108e | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 295 | serial_dout(&com_port->fcr, UART_FCR_DEFVAL); |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 296 | |
Simon Glass | 9246516 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 297 | serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL); |
| 298 | serial_dout(&com_port->dll, baud_divisor & 0xff); |
| 299 | serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff); |
| 300 | serial_dout(&com_port->lcr, UART_LCRVAL); |
Lokesh Vutla | 771d69c | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 301 | serial_dout(&com_port->mdr1, 0x0); |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | static inline void _debug_uart_putc(int ch) |
| 305 | { |
| 306 | struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; |
| 307 | |
Simon Glass | 9246516 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 308 | while (!(serial_din(&com_port->lsr) & UART_LSR_THRE)) |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 309 | ; |
Simon Glass | 9246516 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 310 | serial_dout(&com_port->thr, ch); |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | DEBUG_UART_FUNCS |
| 314 | |
| 315 | #endif |
| 316 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 317 | #ifdef CONFIG_DM_SERIAL |
| 318 | static int ns16550_serial_putc(struct udevice *dev, const char ch) |
| 319 | { |
| 320 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 321 | |
| 322 | if (!(serial_in(&com_port->lsr) & UART_LSR_THRE)) |
| 323 | return -EAGAIN; |
| 324 | serial_out(ch, &com_port->thr); |
| 325 | |
| 326 | /* |
| 327 | * Call watchdog_reset() upon newline. This is done here in putc |
| 328 | * since the environment code uses a single puts() to print the complete |
| 329 | * environment upon "printenv". So we can't put this watchdog call |
| 330 | * in puts(). |
| 331 | */ |
| 332 | if (ch == '\n') |
| 333 | WATCHDOG_RESET(); |
| 334 | |
| 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | static int ns16550_serial_pending(struct udevice *dev, bool input) |
| 339 | { |
| 340 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 341 | |
| 342 | if (input) |
| 343 | return serial_in(&com_port->lsr) & UART_LSR_DR ? 1 : 0; |
| 344 | else |
| 345 | return serial_in(&com_port->lsr) & UART_LSR_THRE ? 0 : 1; |
| 346 | } |
| 347 | |
| 348 | static int ns16550_serial_getc(struct udevice *dev) |
| 349 | { |
| 350 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 351 | |
Simon Glass | ddb958c | 2014-10-22 21:37:03 -0600 | [diff] [blame] | 352 | if (!(serial_in(&com_port->lsr) & UART_LSR_DR)) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 353 | return -EAGAIN; |
| 354 | |
| 355 | return serial_in(&com_port->rbr); |
| 356 | } |
| 357 | |
| 358 | static int ns16550_serial_setbrg(struct udevice *dev, int baudrate) |
| 359 | { |
| 360 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 361 | struct ns16550_platdata *plat = com_port->plat; |
| 362 | int clock_divisor; |
| 363 | |
| 364 | clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate); |
| 365 | |
| 366 | NS16550_setbrg(com_port, clock_divisor); |
| 367 | |
| 368 | return 0; |
| 369 | } |
| 370 | |
| 371 | int ns16550_serial_probe(struct udevice *dev) |
| 372 | { |
| 373 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 374 | |
Simon Glass | 3bf04f3 | 2014-10-22 21:37:05 -0600 | [diff] [blame] | 375 | com_port->plat = dev_get_platdata(dev); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 376 | NS16550_init(com_port, -1); |
| 377 | |
| 378 | return 0; |
| 379 | } |
| 380 | |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 381 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
| 382 | enum { |
| 383 | PORT_NS16550 = 0, |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 384 | PORT_JZ4780, |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 385 | }; |
| 386 | #endif |
| 387 | |
Simon Glass | 18798be | 2016-07-04 11:58:23 -0600 | [diff] [blame] | 388 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 389 | int ns16550_serial_ofdata_to_platdata(struct udevice *dev) |
| 390 | { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 391 | struct ns16550_platdata *plat = dev->platdata; |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 392 | const u32 port_type = dev_get_driver_data(dev); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 393 | fdt_addr_t addr; |
Masahiro Yamada | 09abe2b | 2016-09-26 20:45:27 +0900 | [diff] [blame] | 394 | struct clk clk; |
| 395 | int err; |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 396 | |
Bin Meng | 0203c1c | 2014-12-31 16:05:12 +0800 | [diff] [blame] | 397 | /* try Processor Local Bus device first */ |
Simon Glass | ba1dea4 | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 398 | addr = devfdt_get_addr(dev); |
Simon Glass | f1037ad | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 399 | #if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI) |
Bin Meng | 0203c1c | 2014-12-31 16:05:12 +0800 | [diff] [blame] | 400 | if (addr == FDT_ADDR_T_NONE) { |
| 401 | /* then try pci device */ |
| 402 | struct fdt_pci_addr pci_addr; |
| 403 | u32 bar; |
| 404 | int ret; |
| 405 | |
| 406 | /* we prefer to use a memory-mapped register */ |
Simon Glass | dd79d6e | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 407 | ret = fdtdec_get_pci_addr(gd->fdt_blob, dev_of_offset(dev), |
Bin Meng | 0203c1c | 2014-12-31 16:05:12 +0800 | [diff] [blame] | 408 | FDT_PCI_SPACE_MEM32, "reg", |
| 409 | &pci_addr); |
| 410 | if (ret) { |
| 411 | /* try if there is any i/o-mapped register */ |
| 412 | ret = fdtdec_get_pci_addr(gd->fdt_blob, |
Simon Glass | dd79d6e | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 413 | dev_of_offset(dev), |
Bin Meng | 0203c1c | 2014-12-31 16:05:12 +0800 | [diff] [blame] | 414 | FDT_PCI_SPACE_IO, |
| 415 | "reg", &pci_addr); |
| 416 | if (ret) |
| 417 | return ret; |
| 418 | } |
| 419 | |
Simon Glass | f1037ad | 2015-11-29 13:17:54 -0700 | [diff] [blame] | 420 | ret = fdtdec_get_pci_bar32(dev, &pci_addr, &bar); |
Bin Meng | 0203c1c | 2014-12-31 16:05:12 +0800 | [diff] [blame] | 421 | if (ret) |
| 422 | return ret; |
| 423 | |
| 424 | addr = bar; |
| 425 | } |
| 426 | #endif |
| 427 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 428 | if (addr == FDT_ADDR_T_NONE) |
| 429 | return -EINVAL; |
| 430 | |
Paul Burton | c8acc89 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 431 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | 2546394 | 2014-10-22 21:37:04 -0600 | [diff] [blame] | 432 | plat->base = addr; |
Paul Burton | c8acc89 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 433 | #else |
| 434 | plat->base = (unsigned long)map_physmem(addr, 0, MAP_NOCACHE); |
| 435 | #endif |
| 436 | |
Philipp Tomsich | e74958e | 2017-06-07 18:46:02 +0200 | [diff] [blame^] | 437 | plat->reg_offset = dev_read_u32_default(dev, "reg-offset", 0); |
| 438 | plat->reg_shift = dev_read_u32_default(dev, "reg-shift", 0); |
Paul Burton | 8aadc56 | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 439 | |
| 440 | err = clk_get_by_index(dev, 0, &clk); |
| 441 | if (!err) { |
| 442 | err = clk_get_rate(&clk); |
| 443 | if (!IS_ERR_VALUE(err)) |
| 444 | plat->clock = err; |
Alexandre Courbot | eaa24e7f | 2016-09-30 17:37:00 +0900 | [diff] [blame] | 445 | } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) { |
Paul Burton | 8aadc56 | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 446 | debug("ns16550 failed to get clock\n"); |
| 447 | return err; |
| 448 | } |
| 449 | |
| 450 | if (!plat->clock) |
Philipp Tomsich | e74958e | 2017-06-07 18:46:02 +0200 | [diff] [blame^] | 451 | plat->clock = dev_read_u32_default(dev, "clock-frequency", |
| 452 | CONFIG_SYS_NS16550_CLK); |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 453 | if (!plat->clock) { |
| 454 | debug("ns16550 clock not defined\n"); |
| 455 | return -EINVAL; |
| 456 | } |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 457 | |
Heiko Schocher | 06f108e | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 458 | plat->fcr = UART_FCR_DEFVAL; |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 459 | if (port_type == PORT_JZ4780) |
| 460 | plat->fcr |= UART_FCR_UME; |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 461 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 462 | return 0; |
| 463 | } |
Simon Glass | 3bf04f3 | 2014-10-22 21:37:05 -0600 | [diff] [blame] | 464 | #endif |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 465 | |
| 466 | const struct dm_serial_ops ns16550_serial_ops = { |
| 467 | .putc = ns16550_serial_putc, |
| 468 | .pending = ns16550_serial_pending, |
| 469 | .getc = ns16550_serial_getc, |
| 470 | .setbrg = ns16550_serial_setbrg, |
| 471 | }; |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 472 | |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 473 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Thomas Chou | dad5367 | 2015-12-14 20:45:09 +0800 | [diff] [blame] | 474 | /* |
| 475 | * Please consider existing compatible strings before adding a new |
| 476 | * one to keep this table compact. Or you may add a generic "ns16550" |
| 477 | * compatible string to your dts. |
| 478 | */ |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 479 | static const struct udevice_id ns16550_serial_ids[] = { |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 480 | { .compatible = "ns16550", .data = PORT_NS16550 }, |
| 481 | { .compatible = "ns16550a", .data = PORT_NS16550 }, |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 482 | { .compatible = "ingenic,jz4780-uart", .data = PORT_JZ4780 }, |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 483 | { .compatible = "nvidia,tegra20-uart", .data = PORT_NS16550 }, |
| 484 | { .compatible = "snps,dw-apb-uart", .data = PORT_NS16550 }, |
| 485 | { .compatible = "ti,omap2-uart", .data = PORT_NS16550 }, |
| 486 | { .compatible = "ti,omap3-uart", .data = PORT_NS16550 }, |
| 487 | { .compatible = "ti,omap4-uart", .data = PORT_NS16550 }, |
| 488 | { .compatible = "ti,am3352-uart", .data = PORT_NS16550 }, |
| 489 | { .compatible = "ti,am4372-uart", .data = PORT_NS16550 }, |
| 490 | { .compatible = "ti,dra742-uart", .data = PORT_NS16550 }, |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 491 | {} |
| 492 | }; |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 493 | #endif /* OF_CONTROL && !OF_PLATDATA */ |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 494 | |
Simon Glass | 9ebf348 | 2015-12-13 21:36:59 -0700 | [diff] [blame] | 495 | #if CONFIG_IS_ENABLED(SERIAL_PRESENT) |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 496 | |
| 497 | /* TODO(sjg@chromium.org): Integrate this into a macro like CONFIG_IS_ENABLED */ |
| 498 | #if !defined(CONFIG_TPL_BUILD) || defined(CONFIG_TPL_DM_SERIAL) |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 499 | U_BOOT_DRIVER(ns16550_serial) = { |
| 500 | .name = "ns16550_serial", |
| 501 | .id = UCLASS_SERIAL, |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 502 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 503 | .of_match = ns16550_serial_ids, |
| 504 | .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata, |
| 505 | .platdata_auto_alloc_size = sizeof(struct ns16550_platdata), |
| 506 | #endif |
| 507 | .priv_auto_alloc_size = sizeof(struct NS16550), |
| 508 | .probe = ns16550_serial_probe, |
| 509 | .ops = &ns16550_serial_ops, |
Simon Glass | 6ef533e | 2015-12-04 08:58:38 -0700 | [diff] [blame] | 510 | .flags = DM_FLAG_PRE_RELOC, |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 511 | }; |
Simon Glass | 9ebf348 | 2015-12-13 21:36:59 -0700 | [diff] [blame] | 512 | #endif |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 513 | #endif /* SERIAL_PRESENT */ |
| 514 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 515 | #endif /* CONFIG_DM_SERIAL */ |