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 | 85d6531 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 7 | #include <clock_legacy.h> |
Simon Glass | e98e01e | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 8 | #include <common.h> |
Paul Burton | 8aadc56 | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 9 | #include <clk.h> |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 10 | #include <dm.h> |
| 11 | #include <errno.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 12 | #include <ns16550.h> |
Ley Foon Tan | a176339 | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 13 | #include <reset.h> |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 14 | #include <serial.h> |
Ladislav Michl | cc29442 | 2010-02-01 23:34:25 +0100 | [diff] [blame] | 15 | #include <watchdog.h> |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 16 | #include <linux/types.h> |
| 17 | #include <asm/io.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 18 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Detlev Zundel | 166fb54 | 2009-04-03 11:53:01 +0200 | [diff] [blame] | 21 | #define UART_LCRVAL UART_LCR_8N1 /* 8 data, 1 stop, no parity */ |
| 22 | #define UART_MCRVAL (UART_MCR_DTR | \ |
| 23 | UART_MCR_RTS) /* RTS/DTR */ |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 24 | |
Simon Glass | d945a49 | 2019-09-25 08:11:14 -0600 | [diff] [blame] | 25 | #if !CONFIG_IS_ENABLED(DM_SERIAL) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 26 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 27 | #define serial_out(x, y) outb(x, (ulong)y) |
| 28 | #define serial_in(y) inb((ulong)y) |
Dave Aldridge | a51bebc | 2011-09-01 22:47:14 +0000 | [diff] [blame] | 29 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0) |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 30 | #define serial_out(x, y) out_be32(y, x) |
| 31 | #define serial_in(y) in_be32(y) |
Dave Aldridge | a51bebc | 2011-09-01 22:47:14 +0000 | [diff] [blame] | 32 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0) |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 33 | #define serial_out(x, y) out_le32(y, x) |
| 34 | #define serial_in(y) in_le32(y) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 35 | #else |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 36 | #define serial_out(x, y) writeb(x, y) |
| 37 | #define serial_in(y) readb(y) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 38 | #endif |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 39 | #endif /* !CONFIG_DM_SERIAL */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 40 | |
Khoronzhuk, Ivan | 8090298 | 2014-07-16 00:59:25 +0300 | [diff] [blame] | 41 | #if defined(CONFIG_SOC_KEYSTONE) |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 42 | #define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0 |
| 43 | #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] | 44 | #undef UART_MCRVAL |
| 45 | #ifdef CONFIG_SERIAL_HW_FLOW_CONTROL |
| 46 | #define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE) |
| 47 | #else |
| 48 | #define UART_MCRVAL (UART_MCR_RTS) |
| 49 | #endif |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 50 | #endif |
| 51 | |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 52 | #ifndef CONFIG_SYS_NS16550_IER |
| 53 | #define CONFIG_SYS_NS16550_IER 0x00 |
| 54 | #endif /* CONFIG_SYS_NS16550_IER */ |
| 55 | |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 56 | static inline void serial_out_shift(void *addr, int shift, int value) |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 57 | { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 58 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | 96e230b | 2014-10-10 07:49:13 -0600 | [diff] [blame] | 59 | outb(value, (ulong)addr); |
Bernhard Messerklinger | d8427e7 | 2018-02-15 09:02:26 +0100 | [diff] [blame] | 60 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 61 | out_le32(addr, value); |
| 62 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN) |
| 63 | out_be32(addr, value); |
Simon Glass | 0b31ec7 | 2015-05-12 14:55:02 -0600 | [diff] [blame] | 64 | #elif defined(CONFIG_SYS_NS16550_MEM32) |
| 65 | writel(value, addr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 66 | #elif defined(CONFIG_SYS_BIG_ENDIAN) |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 67 | writeb(value, addr + (1 << shift) - 1); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 68 | #else |
| 69 | writeb(value, addr); |
| 70 | #endif |
| 71 | } |
| 72 | |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 73 | static inline int serial_in_shift(void *addr, int shift) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 74 | { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 75 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | 96e230b | 2014-10-10 07:49:13 -0600 | [diff] [blame] | 76 | return inb((ulong)addr); |
Bernhard Messerklinger | d8427e7 | 2018-02-15 09:02:26 +0100 | [diff] [blame] | 77 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 78 | return in_le32(addr); |
| 79 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN) |
| 80 | return in_be32(addr); |
Simon Glass | 0b31ec7 | 2015-05-12 14:55:02 -0600 | [diff] [blame] | 81 | #elif defined(CONFIG_SYS_NS16550_MEM32) |
| 82 | return readl(addr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 83 | #elif defined(CONFIG_SYS_BIG_ENDIAN) |
Axel Lin | b5c372d | 2015-02-28 15:55:36 +0800 | [diff] [blame] | 84 | return readb(addr + (1 << shift) - 1); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 85 | #else |
| 86 | return readb(addr); |
| 87 | #endif |
| 88 | } |
| 89 | |
Simon Glass | d945a49 | 2019-09-25 08:11:14 -0600 | [diff] [blame] | 90 | #if CONFIG_IS_ENABLED(DM_SERIAL) |
Marek Vasut | 3e97cbb | 2016-05-25 02:13:03 +0200 | [diff] [blame] | 91 | |
| 92 | #ifndef CONFIG_SYS_NS16550_CLK |
| 93 | #define CONFIG_SYS_NS16550_CLK 0 |
| 94 | #endif |
| 95 | |
Simon Glass | f8b1a24 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 96 | /* |
| 97 | * Use this #ifdef for now since many platforms don't define in(), out(), |
| 98 | * out_le32(), etc. but we don't have #defines to indicate this. |
| 99 | * |
| 100 | * TODO(sjg@chromium.org): Add CONFIG options to indicate what I/O is available |
| 101 | * on a platform |
| 102 | */ |
| 103 | #ifdef CONFIG_NS16550_DYNAMIC |
| 104 | static void serial_out_dynamic(struct ns16550_platdata *plat, u8 *addr, |
| 105 | int value) |
| 106 | { |
| 107 | if (plat->flags & NS16550_FLAG_IO) { |
| 108 | outb(value, addr); |
| 109 | } else if (plat->reg_width == 4) { |
| 110 | if (plat->flags & NS16550_FLAG_ENDIAN) { |
| 111 | if (plat->flags & NS16550_FLAG_BE) |
| 112 | out_be32(addr, value); |
| 113 | else |
| 114 | out_le32(addr, value); |
| 115 | } else { |
| 116 | writel(value, addr); |
| 117 | } |
| 118 | } else if (plat->flags & NS16550_FLAG_BE) { |
| 119 | writeb(value, addr + (1 << plat->reg_shift) - 1); |
| 120 | } else { |
| 121 | writeb(value, addr); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | static int serial_in_dynamic(struct ns16550_platdata *plat, u8 *addr) |
| 126 | { |
| 127 | if (plat->flags & NS16550_FLAG_IO) { |
| 128 | return inb(addr); |
| 129 | } else if (plat->reg_width == 4) { |
| 130 | if (plat->flags & NS16550_FLAG_ENDIAN) { |
| 131 | if (plat->flags & NS16550_FLAG_BE) |
| 132 | return in_be32(addr); |
| 133 | else |
| 134 | return in_le32(addr); |
| 135 | } else { |
| 136 | return readl(addr); |
| 137 | } |
| 138 | } else if (plat->flags & NS16550_FLAG_BE) { |
| 139 | return readb(addr + (1 << plat->reg_shift) - 1); |
| 140 | } else { |
| 141 | return readb(addr); |
| 142 | } |
| 143 | } |
| 144 | #else |
| 145 | static inline void serial_out_dynamic(struct ns16550_platdata *plat, u8 *addr, |
| 146 | int value) |
| 147 | { |
| 148 | } |
| 149 | |
| 150 | static inline int serial_in_dynamic(struct ns16550_platdata *plat, u8 *addr) |
| 151 | { |
| 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | #endif /* CONFIG_NS16550_DYNAMIC */ |
| 156 | |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 157 | static void ns16550_writeb(NS16550_t port, int offset, int value) |
| 158 | { |
| 159 | struct ns16550_platdata *plat = port->plat; |
| 160 | unsigned char *addr; |
| 161 | |
| 162 | offset *= 1 << plat->reg_shift; |
Simon Glass | f8b1a24 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 163 | addr = (unsigned char *)plat->base + offset + plat->reg_offset; |
Paul Burton | c8acc89 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 164 | |
Simon Glass | f8b1a24 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 165 | if (IS_ENABLED(CONFIG_NS16550_DYNAMIC)) |
| 166 | serial_out_dynamic(plat, addr, value); |
| 167 | else |
| 168 | serial_out_shift(addr, plat->reg_shift, value); |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | static int ns16550_readb(NS16550_t port, int offset) |
| 172 | { |
| 173 | struct ns16550_platdata *plat = port->plat; |
| 174 | unsigned char *addr; |
| 175 | |
| 176 | offset *= 1 << plat->reg_shift; |
Simon Glass | f8b1a24 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 177 | addr = (unsigned char *)plat->base + offset + plat->reg_offset; |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 178 | |
Simon Glass | f8b1a24 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 179 | if (IS_ENABLED(CONFIG_NS16550_DYNAMIC)) |
| 180 | return serial_in_dynamic(plat, addr); |
| 181 | else |
| 182 | return serial_in_shift(addr, plat->reg_shift); |
Simon Glass | 6aba4fd | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 185 | static u32 ns16550_getfcr(NS16550_t port) |
| 186 | { |
| 187 | struct ns16550_platdata *plat = port->plat; |
| 188 | |
| 189 | return plat->fcr; |
| 190 | } |
| 191 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 192 | /* We can clean these up once everything is moved to driver model */ |
| 193 | #define serial_out(value, addr) \ |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 194 | ns16550_writeb(com_port, \ |
| 195 | (unsigned char *)addr - (unsigned char *)com_port, value) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 196 | #define serial_in(addr) \ |
Simon Glass | b31fb12 | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 197 | ns16550_readb(com_port, \ |
| 198 | (unsigned char *)addr - (unsigned char *)com_port) |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 199 | #else |
| 200 | static u32 ns16550_getfcr(NS16550_t port) |
| 201 | { |
Heiko Schocher | 06f108e | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 202 | return UART_FCR_DEFVAL; |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 203 | } |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 204 | #endif |
| 205 | |
Marek Vasut | 3b164a5 | 2016-05-25 02:13:16 +0200 | [diff] [blame] | 206 | int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate) |
Simon Glass | e98e01e | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 207 | { |
| 208 | const unsigned int mode_x_div = 16; |
| 209 | |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 210 | return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate); |
| 211 | } |
| 212 | |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 213 | static void NS16550_setbrg(NS16550_t com_port, int baud_divisor) |
| 214 | { |
Simon Goldschmidt | ba2d0aa | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 215 | /* to keep serial format, read lcr before writing BKSE */ |
| 216 | int lcr_val = serial_in(&com_port->lcr) & ~UART_LCR_BKSE; |
| 217 | |
| 218 | serial_out(UART_LCR_BKSE | lcr_val, &com_port->lcr); |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 219 | serial_out(baud_divisor & 0xff, &com_port->dll); |
| 220 | serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); |
Simon Goldschmidt | ba2d0aa | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 221 | serial_out(lcr_val, &com_port->lcr); |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 222 | } |
| 223 | |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 224 | void NS16550_init(NS16550_t com_port, int baud_divisor) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 225 | { |
Gregoire Gentil | 6b05d0a | 2014-11-10 11:04:10 -0800 | [diff] [blame] | 226 | #if (defined(CONFIG_SPL_BUILD) && \ |
| 227 | (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX))) |
Manfred Huber | f9b8ae3 | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 228 | /* |
Gregoire Gentil | 6b05d0a | 2014-11-10 11:04:10 -0800 | [diff] [blame] | 229 | * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode |
| 230 | * before SPL starts only THRE bit is set. We have to empty the |
| 231 | * transmitter before initialization starts. |
Manfred Huber | f9b8ae3 | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 232 | */ |
| 233 | if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE)) |
| 234 | == UART_LSR_THRE) { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 235 | if (baud_divisor != -1) |
| 236 | NS16550_setbrg(com_port, baud_divisor); |
Patrik Dahlström | 7e1bda9 | 2019-12-21 17:25:12 +0100 | [diff] [blame] | 237 | else { |
| 238 | // Re-use old baud rate divisor to flush transmit reg. |
| 239 | const int dll = serial_in(&com_port->dll); |
| 240 | const int dlm = serial_in(&com_port->dlm); |
| 241 | const int divisor = dll | (dlm << 8); |
| 242 | NS16550_setbrg(com_port, divisor); |
| 243 | } |
Manfred Huber | f9b8ae3 | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 244 | serial_out(0, &com_port->mdr1); |
| 245 | } |
| 246 | #endif |
| 247 | |
Scott Wood | 6c6f061 | 2012-09-18 18:19:05 -0500 | [diff] [blame] | 248 | while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT)) |
| 249 | ; |
| 250 | |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 251 | serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier); |
Lokesh Vutla | 42cb4b8 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 252 | #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_OMAP_SERIAL) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 253 | serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/ |
wdenk | 21136db | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 254 | #endif |
Ley Foon Tan | a176339 | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 255 | |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 256 | serial_out(UART_MCRVAL, &com_port->mcr); |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 257 | serial_out(ns16550_getfcr(com_port), &com_port->fcr); |
Simon Goldschmidt | ba2d0aa | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 258 | /* initialize serial config to 8N1 before writing baudrate */ |
| 259 | serial_out(UART_LCRVAL, &com_port->lcr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 260 | if (baud_divisor != -1) |
| 261 | NS16550_setbrg(com_port, baud_divisor); |
Lokesh Vutla | 42cb4b8 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 262 | #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_SOC_DA8XX) || \ |
| 263 | defined(CONFIG_OMAP_SERIAL) |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 264 | /* /16 is proper to hit 115200 with 48MHz */ |
| 265 | serial_out(0, &com_port->mdr1); |
Tom Rini | f28c434 | 2017-05-12 22:33:16 -0400 | [diff] [blame] | 266 | #endif |
Khoronzhuk, Ivan | 8090298 | 2014-07-16 00:59:25 +0300 | [diff] [blame] | 267 | #if defined(CONFIG_SOC_KEYSTONE) |
Vitaly Andrianov | 7bcf4d6 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 268 | serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC); |
| 269 | #endif |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 272 | #ifndef CONFIG_NS16550_MIN_FUNCTIONS |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 273 | void NS16550_reinit(NS16550_t com_port, int baud_divisor) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 274 | { |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 275 | serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier); |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 276 | NS16550_setbrg(com_port, 0); |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 277 | serial_out(UART_MCRVAL, &com_port->mcr); |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 278 | serial_out(ns16550_getfcr(com_port), &com_port->fcr); |
Simon Glass | c31ebfe | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 279 | NS16550_setbrg(com_port, baud_divisor); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 280 | } |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 281 | #endif /* CONFIG_NS16550_MIN_FUNCTIONS */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 282 | |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 283 | void NS16550_putc(NS16550_t com_port, char c) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 284 | { |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 285 | while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0) |
| 286 | ; |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 287 | serial_out(c, &com_port->thr); |
Stefan Roese | 57b9988 | 2010-10-12 09:39:45 +0200 | [diff] [blame] | 288 | |
| 289 | /* |
| 290 | * Call watchdog_reset() upon newline. This is done here in putc |
| 291 | * since the environment code uses a single puts() to print the complete |
| 292 | * environment upon "printenv". So we can't put this watchdog call |
| 293 | * in puts(). |
| 294 | */ |
| 295 | if (c == '\n') |
| 296 | WATCHDOG_RESET(); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 299 | #ifndef CONFIG_NS16550_MIN_FUNCTIONS |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 300 | char NS16550_getc(NS16550_t com_port) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 301 | { |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 302 | while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) { |
Marek Vasut | 9e1fca9 | 2012-09-15 10:25:19 +0200 | [diff] [blame] | 303 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY) |
wdenk | 29e7f5a | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 304 | extern void usbtty_poll(void); |
| 305 | usbtty_poll(); |
| 306 | #endif |
Ladislav Michl | cc29442 | 2010-02-01 23:34:25 +0100 | [diff] [blame] | 307 | WATCHDOG_RESET(); |
wdenk | 29e7f5a | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 308 | } |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 309 | return serial_in(&com_port->rbr); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 310 | } |
| 311 | |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 312 | int NS16550_tstc(NS16550_t com_port) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 313 | { |
Simon Glass | dd5497c | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 314 | return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0; |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 315 | } |
| 316 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 317 | #endif /* CONFIG_NS16550_MIN_FUNCTIONS */ |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 318 | |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 319 | #ifdef CONFIG_DEBUG_UART_NS16550 |
| 320 | |
| 321 | #include <debug_uart.h> |
| 322 | |
Simon Glass | 60517d7 | 2015-10-18 19:51:23 -0600 | [diff] [blame] | 323 | static inline void _debug_uart_init(void) |
Simon Glass | 27afb52 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 324 | { |
| 325 | struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; |
| 326 | int baud_divisor; |
| 327 | |
| 328 | /* |
| 329 | * We copy the code from above because it is already horribly messy. |
| 330 | * Trying to refactor to nicely remove the duplication doesn't seem |
| 331 | * feasible. The better fix is to move all users of this driver to |
| 332 | * driver model. |
| 333 | */ |
Marek Vasut | 3b164a5 | 2016-05-25 02:13:16 +0200 | [diff] [blame] | 334 | baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK, |
| 335 | CONFIG_BAUDRATE); |
Simon Glass | 9246516 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 336 | serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER); |
Lokesh Vutla | 771d69c | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 337 | serial_dout(&com_port->mcr, UART_MCRVAL); |
| 338 | serial_dout(&com_port->fcr, UART_FCR_DEFVAL); |
| 339 | |
| 340 | serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL); |
| 341 | serial_dout(&com_port->dll, baud_divisor & 0xff); |
| 342 | serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff); |
| 343 | serial_dout(&com_port->lcr, UART_LCRVAL); |
| 344 | } |
| 345 | |
Simon Goldschmidt | e03ad21 | 2019-01-09 20:35:31 +0100 | [diff] [blame] | 346 | static inline int NS16550_read_baud_divisor(struct NS16550 *com_port) |
| 347 | { |
| 348 | int ret; |
| 349 | |
| 350 | serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL); |
| 351 | ret = serial_din(&com_port->dll) & 0xff; |
| 352 | ret |= (serial_din(&com_port->dlm) & 0xff) << 8; |
| 353 | serial_dout(&com_port->lcr, UART_LCRVAL); |
| 354 | |
| 355 | return ret; |
| 356 | } |
| 357 | |
Lokesh Vutla | 771d69c | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 358 | static inline void _debug_uart_putc(int ch) |
| 359 | { |
| 360 | struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE; |
| 361 | |
Simon Goldschmidt | e03ad21 | 2019-01-09 20:35:31 +0100 | [diff] [blame] | 362 | while (!(serial_din(&com_port->lsr) & UART_LSR_THRE)) { |
| 363 | #ifdef CONFIG_DEBUG_UART_NS16550_CHECK_ENABLED |
| 364 | if (!NS16550_read_baud_divisor(com_port)) |
| 365 | return; |
| 366 | #endif |
| 367 | } |
Lokesh Vutla | 771d69c | 2017-04-22 15:57:25 +0530 | [diff] [blame] | 368 | serial_dout(&com_port->thr, ch); |
| 369 | } |
| 370 | |
| 371 | DEBUG_UART_FUNCS |
| 372 | |
| 373 | #endif |
| 374 | |
Simon Glass | d945a49 | 2019-09-25 08:11:14 -0600 | [diff] [blame] | 375 | #if CONFIG_IS_ENABLED(DM_SERIAL) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 376 | static int ns16550_serial_putc(struct udevice *dev, const char ch) |
| 377 | { |
| 378 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 379 | |
| 380 | if (!(serial_in(&com_port->lsr) & UART_LSR_THRE)) |
| 381 | return -EAGAIN; |
| 382 | serial_out(ch, &com_port->thr); |
| 383 | |
| 384 | /* |
| 385 | * Call watchdog_reset() upon newline. This is done here in putc |
| 386 | * since the environment code uses a single puts() to print the complete |
| 387 | * environment upon "printenv". So we can't put this watchdog call |
| 388 | * in puts(). |
| 389 | */ |
| 390 | if (ch == '\n') |
| 391 | WATCHDOG_RESET(); |
| 392 | |
| 393 | return 0; |
| 394 | } |
| 395 | |
| 396 | static int ns16550_serial_pending(struct udevice *dev, bool input) |
| 397 | { |
| 398 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 399 | |
| 400 | if (input) |
Mario Six | aed664a | 2018-01-15 11:09:49 +0100 | [diff] [blame] | 401 | return (serial_in(&com_port->lsr) & UART_LSR_DR) ? 1 : 0; |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 402 | else |
Mario Six | aed664a | 2018-01-15 11:09:49 +0100 | [diff] [blame] | 403 | return (serial_in(&com_port->lsr) & UART_LSR_THRE) ? 0 : 1; |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | static int ns16550_serial_getc(struct udevice *dev) |
| 407 | { |
Stefan Roese | 48b771c | 2017-08-16 17:37:15 +0200 | [diff] [blame] | 408 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 409 | |
| 410 | if (!(serial_in(&com_port->lsr) & UART_LSR_DR)) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 411 | return -EAGAIN; |
| 412 | |
Stefan Roese | 48b771c | 2017-08-16 17:37:15 +0200 | [diff] [blame] | 413 | return serial_in(&com_port->rbr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | static int ns16550_serial_setbrg(struct udevice *dev, int baudrate) |
| 417 | { |
| 418 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 419 | struct ns16550_platdata *plat = com_port->plat; |
| 420 | int clock_divisor; |
| 421 | |
| 422 | clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate); |
| 423 | |
| 424 | NS16550_setbrg(com_port, clock_divisor); |
| 425 | |
Simon Goldschmidt | ba2d0aa | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | static int ns16550_serial_setconfig(struct udevice *dev, uint serial_config) |
| 430 | { |
| 431 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 432 | int lcr_val = UART_LCR_WLS_8; |
| 433 | uint parity = SERIAL_GET_PARITY(serial_config); |
| 434 | uint bits = SERIAL_GET_BITS(serial_config); |
| 435 | uint stop = SERIAL_GET_STOP(serial_config); |
| 436 | |
| 437 | /* |
| 438 | * only parity config is implemented, check if other serial settings |
| 439 | * are the default one. |
| 440 | */ |
| 441 | if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP) |
| 442 | return -ENOTSUPP; /* not supported in driver*/ |
| 443 | |
| 444 | switch (parity) { |
| 445 | case SERIAL_PAR_NONE: |
| 446 | /* no bits to add */ |
| 447 | break; |
| 448 | case SERIAL_PAR_ODD: |
| 449 | lcr_val |= UART_LCR_PEN; |
| 450 | break; |
| 451 | case SERIAL_PAR_EVEN: |
| 452 | lcr_val |= UART_LCR_PEN | UART_LCR_EPS; |
| 453 | break; |
| 454 | default: |
| 455 | return -ENOTSUPP; /* not supported in driver*/ |
| 456 | } |
| 457 | |
| 458 | serial_out(lcr_val, &com_port->lcr); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 459 | return 0; |
| 460 | } |
| 461 | |
Andy Shevchenko | d778fc4 | 2018-11-20 23:52:36 +0200 | [diff] [blame] | 462 | static int ns16550_serial_getinfo(struct udevice *dev, |
| 463 | struct serial_device_info *info) |
| 464 | { |
| 465 | struct NS16550 *const com_port = dev_get_priv(dev); |
| 466 | struct ns16550_platdata *plat = com_port->plat; |
| 467 | |
| 468 | info->type = SERIAL_CHIP_16550_COMPATIBLE; |
| 469 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
| 470 | info->addr_space = SERIAL_ADDRESS_SPACE_IO; |
| 471 | #else |
| 472 | info->addr_space = SERIAL_ADDRESS_SPACE_MEMORY; |
| 473 | #endif |
| 474 | info->addr = plat->base; |
| 475 | info->reg_width = plat->reg_width; |
| 476 | info->reg_shift = plat->reg_shift; |
| 477 | info->reg_offset = plat->reg_offset; |
| 478 | return 0; |
| 479 | } |
| 480 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 481 | int ns16550_serial_probe(struct udevice *dev) |
| 482 | { |
| 483 | struct NS16550 *const com_port = dev_get_priv(dev); |
Ley Foon Tan | a176339 | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 484 | struct reset_ctl_bulk reset_bulk; |
| 485 | int ret; |
| 486 | |
| 487 | ret = reset_get_bulk(dev, &reset_bulk); |
| 488 | if (!ret) |
| 489 | reset_deassert_bulk(&reset_bulk); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 490 | |
Simon Glass | 3bf04f3 | 2014-10-22 21:37:05 -0600 | [diff] [blame] | 491 | com_port->plat = dev_get_platdata(dev); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 492 | NS16550_init(com_port, -1); |
| 493 | |
| 494 | return 0; |
| 495 | } |
| 496 | |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 497 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
| 498 | enum { |
| 499 | PORT_NS16550 = 0, |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 500 | PORT_JZ4780, |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 501 | }; |
| 502 | #endif |
| 503 | |
Simon Glass | 18798be | 2016-07-04 11:58:23 -0600 | [diff] [blame] | 504 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 505 | int ns16550_serial_ofdata_to_platdata(struct udevice *dev) |
| 506 | { |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 507 | struct ns16550_platdata *plat = dev->platdata; |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 508 | const u32 port_type = dev_get_driver_data(dev); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 509 | fdt_addr_t addr; |
Masahiro Yamada | 09abe2b | 2016-09-26 20:45:27 +0900 | [diff] [blame] | 510 | struct clk clk; |
| 511 | int err; |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 512 | |
Bin Meng | 0203c1c | 2014-12-31 16:05:12 +0800 | [diff] [blame] | 513 | /* try Processor Local Bus device first */ |
Simon Glass | 23b2759 | 2019-09-15 12:08:58 -0600 | [diff] [blame] | 514 | addr = dev_read_addr_pci(dev); |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 515 | if (addr == FDT_ADDR_T_NONE) |
| 516 | return -EINVAL; |
| 517 | |
Paul Burton | c8acc89 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 518 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | 2546394 | 2014-10-22 21:37:04 -0600 | [diff] [blame] | 519 | plat->base = addr; |
Paul Burton | c8acc89 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 520 | #else |
| 521 | plat->base = (unsigned long)map_physmem(addr, 0, MAP_NOCACHE); |
| 522 | #endif |
| 523 | |
Philipp Tomsich | e74958e | 2017-06-07 18:46:02 +0200 | [diff] [blame] | 524 | plat->reg_offset = dev_read_u32_default(dev, "reg-offset", 0); |
| 525 | plat->reg_shift = dev_read_u32_default(dev, "reg-shift", 0); |
Andy Shevchenko | 72fccfe | 2018-11-20 23:52:35 +0200 | [diff] [blame] | 526 | plat->reg_width = dev_read_u32_default(dev, "reg-io-width", 1); |
Paul Burton | 8aadc56 | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 527 | |
| 528 | err = clk_get_by_index(dev, 0, &clk); |
| 529 | if (!err) { |
| 530 | err = clk_get_rate(&clk); |
| 531 | if (!IS_ERR_VALUE(err)) |
| 532 | plat->clock = err; |
Alexandre Courbot | eaa24e7f | 2016-09-30 17:37:00 +0900 | [diff] [blame] | 533 | } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) { |
Paul Burton | 8aadc56 | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 534 | debug("ns16550 failed to get clock\n"); |
| 535 | return err; |
| 536 | } |
| 537 | |
| 538 | if (!plat->clock) |
Philipp Tomsich | e74958e | 2017-06-07 18:46:02 +0200 | [diff] [blame] | 539 | plat->clock = dev_read_u32_default(dev, "clock-frequency", |
| 540 | CONFIG_SYS_NS16550_CLK); |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 541 | if (!plat->clock) { |
| 542 | debug("ns16550 clock not defined\n"); |
| 543 | return -EINVAL; |
| 544 | } |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 545 | |
Heiko Schocher | 06f108e | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 546 | plat->fcr = UART_FCR_DEFVAL; |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 547 | if (port_type == PORT_JZ4780) |
| 548 | plat->fcr |= UART_FCR_UME; |
Marek Vasut | f523c9c | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 549 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 550 | return 0; |
| 551 | } |
Simon Glass | 3bf04f3 | 2014-10-22 21:37:05 -0600 | [diff] [blame] | 552 | #endif |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 553 | |
| 554 | const struct dm_serial_ops ns16550_serial_ops = { |
| 555 | .putc = ns16550_serial_putc, |
| 556 | .pending = ns16550_serial_pending, |
| 557 | .getc = ns16550_serial_getc, |
| 558 | .setbrg = ns16550_serial_setbrg, |
Andy Shevchenko | d778fc4 | 2018-11-20 23:52:36 +0200 | [diff] [blame] | 559 | .setconfig = ns16550_serial_setconfig, |
| 560 | .getinfo = ns16550_serial_getinfo, |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 561 | }; |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 562 | |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 563 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Thomas Chou | dad5367 | 2015-12-14 20:45:09 +0800 | [diff] [blame] | 564 | /* |
| 565 | * Please consider existing compatible strings before adding a new |
| 566 | * one to keep this table compact. Or you may add a generic "ns16550" |
| 567 | * compatible string to your dts. |
| 568 | */ |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 569 | static const struct udevice_id ns16550_serial_ids[] = { |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 570 | { .compatible = "ns16550", .data = PORT_NS16550 }, |
| 571 | { .compatible = "ns16550a", .data = PORT_NS16550 }, |
Marek Vasut | 92a744f | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 572 | { .compatible = "ingenic,jz4780-uart", .data = PORT_JZ4780 }, |
Marek Vasut | 1a59eec | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 573 | { .compatible = "nvidia,tegra20-uart", .data = PORT_NS16550 }, |
| 574 | { .compatible = "snps,dw-apb-uart", .data = PORT_NS16550 }, |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 575 | {} |
| 576 | }; |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 577 | #endif /* OF_CONTROL && !OF_PLATDATA */ |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 578 | |
Simon Glass | 9ebf348 | 2015-12-13 21:36:59 -0700 | [diff] [blame] | 579 | #if CONFIG_IS_ENABLED(SERIAL_PRESENT) |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 580 | |
| 581 | /* TODO(sjg@chromium.org): Integrate this into a macro like CONFIG_IS_ENABLED */ |
| 582 | #if !defined(CONFIG_TPL_BUILD) || defined(CONFIG_TPL_DM_SERIAL) |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 583 | U_BOOT_DRIVER(ns16550_serial) = { |
| 584 | .name = "ns16550_serial", |
| 585 | .id = UCLASS_SERIAL, |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 586 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 587 | .of_match = ns16550_serial_ids, |
| 588 | .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata, |
| 589 | .platdata_auto_alloc_size = sizeof(struct ns16550_platdata), |
| 590 | #endif |
| 591 | .priv_auto_alloc_size = sizeof(struct NS16550), |
| 592 | .probe = ns16550_serial_probe, |
| 593 | .ops = &ns16550_serial_ops, |
Bin Meng | bdb33d8 | 2018-10-24 06:36:36 -0700 | [diff] [blame] | 594 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 6ef533e | 2015-12-04 08:58:38 -0700 | [diff] [blame] | 595 | .flags = DM_FLAG_PRE_RELOC, |
Bin Meng | bdb33d8 | 2018-10-24 06:36:36 -0700 | [diff] [blame] | 596 | #endif |
Thomas Chou | 16b2e7e | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 597 | }; |
Simon Glass | 9ebf348 | 2015-12-13 21:36:59 -0700 | [diff] [blame] | 598 | #endif |
Alexandru Gagniuc | b1ab189 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 599 | #endif /* SERIAL_PRESENT */ |
| 600 | |
Simon Glass | 79a9da3 | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 601 | #endif /* CONFIG_DM_SERIAL */ |