wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 1 | /* |
| 2 | * COM1 NS16550 support |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 3 | * originally from linux source (arch/powerpc/boot/ns16550.c) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 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 | d96c260 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 7 | #include <clock_legacy.h> |
Simon Glass | fa54eb1 | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 8 | #include <common.h> |
Paul Burton | 50fce1d | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 9 | #include <clk.h> |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 10 | #include <dm.h> |
| 11 | #include <errno.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 13 | #include <ns16550.h> |
Ley Foon Tan | b051eec | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 14 | #include <reset.h> |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 15 | #include <serial.h> |
Ladislav Michl | a1b322a | 2010-02-01 23:34:25 +0100 | [diff] [blame] | 16 | #include <watchdog.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 18 | #include <linux/err.h> |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 19 | #include <linux/types.h> |
| 20 | #include <asm/io.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 21 | |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Detlev Zundel | 200779e | 2009-04-03 11:53:01 +0200 | [diff] [blame] | 24 | #define UART_LCRVAL UART_LCR_8N1 /* 8 data, 1 stop, no parity */ |
| 25 | #define UART_MCRVAL (UART_MCR_DTR | \ |
| 26 | UART_MCR_RTS) /* RTS/DTR */ |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 27 | |
Simon Glass | 2e2c514 | 2019-09-25 08:11:14 -0600 | [diff] [blame] | 28 | #if !CONFIG_IS_ENABLED(DM_SERIAL) |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 29 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Simon Glass | f8df9d0 | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 30 | #define serial_out(x, y) outb(x, (ulong)y) |
| 31 | #define serial_in(y) inb((ulong)y) |
Dave Aldridge | 79df120 | 2011-09-01 22:47:14 +0000 | [diff] [blame] | 32 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0) |
Simon Glass | f8df9d0 | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 33 | #define serial_out(x, y) out_be32(y, x) |
| 34 | #define serial_in(y) in_be32(y) |
Dave Aldridge | 79df120 | 2011-09-01 22:47:14 +0000 | [diff] [blame] | 35 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0) |
Simon Glass | f8df9d0 | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 36 | #define serial_out(x, y) out_le32(y, x) |
| 37 | #define serial_in(y) in_le32(y) |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 38 | #else |
Simon Glass | f8df9d0 | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 39 | #define serial_out(x, y) writeb(x, y) |
| 40 | #define serial_in(y) readb(y) |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 41 | #endif |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 42 | #endif /* !CONFIG_DM_SERIAL */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 43 | |
Tom Rini | f899cc1 | 2021-09-12 20:32:32 -0400 | [diff] [blame] | 44 | #if defined(CONFIG_ARCH_KEYSTONE) |
Vitaly Andrianov | ef509b9 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 45 | #define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0 |
| 46 | #define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0)) |
Karicheri, Muralidharan | d57dee5 | 2014-04-09 15:38:46 -0400 | [diff] [blame] | 47 | #undef UART_MCRVAL |
| 48 | #ifdef CONFIG_SERIAL_HW_FLOW_CONTROL |
| 49 | #define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE) |
| 50 | #else |
| 51 | #define UART_MCRVAL (UART_MCR_RTS) |
| 52 | #endif |
Vitaly Andrianov | ef509b9 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 53 | #endif |
| 54 | |
Tom Rini | 6e7df1d | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 55 | #ifndef CFG_SYS_NS16550_IER |
| 56 | #define CFG_SYS_NS16550_IER 0x00 |
| 57 | #endif /* CFG_SYS_NS16550_IER */ |
Prafulla Wadaskar | a160ea0 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 58 | |
Simon Glass | 363e6da | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 59 | static inline void serial_out_shift(void *addr, int shift, int value) |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 60 | { |
| 61 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
| 62 | outb(value, (ulong)addr); |
Bernhard Messerklinger | 78b7d37 | 2018-02-15 09:02:26 +0100 | [diff] [blame] | 63 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN) |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 64 | out_le32(addr, value); |
| 65 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN) |
| 66 | out_be32(addr, value); |
Simon Glass | 9091400 | 2015-05-12 14:55:02 -0600 | [diff] [blame] | 67 | #elif defined(CONFIG_SYS_NS16550_MEM32) |
| 68 | writel(value, addr); |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 69 | #elif defined(CONFIG_SYS_BIG_ENDIAN) |
| 70 | writeb(value, addr + (1 << shift) - 1); |
| 71 | #else |
| 72 | writeb(value, addr); |
| 73 | #endif |
| 74 | } |
| 75 | |
Simon Glass | 363e6da | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 76 | static inline int serial_in_shift(void *addr, int shift) |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 77 | { |
| 78 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
| 79 | return inb((ulong)addr); |
Bernhard Messerklinger | 78b7d37 | 2018-02-15 09:02:26 +0100 | [diff] [blame] | 80 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN) |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 81 | return in_le32(addr); |
| 82 | #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN) |
| 83 | return in_be32(addr); |
Simon Glass | 9091400 | 2015-05-12 14:55:02 -0600 | [diff] [blame] | 84 | #elif defined(CONFIG_SYS_NS16550_MEM32) |
| 85 | return readl(addr); |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 86 | #elif defined(CONFIG_SYS_BIG_ENDIAN) |
Axel Lin | 20379c1 | 2015-02-28 15:55:36 +0800 | [diff] [blame] | 87 | return readb(addr + (1 << shift) - 1); |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 88 | #else |
| 89 | return readb(addr); |
| 90 | #endif |
| 91 | } |
| 92 | |
Simon Glass | 2e2c514 | 2019-09-25 08:11:14 -0600 | [diff] [blame] | 93 | #if CONFIG_IS_ENABLED(DM_SERIAL) |
Marek Vasut | fa4ce72 | 2016-05-25 02:13:03 +0200 | [diff] [blame] | 94 | |
Tom Rini | 9109213 | 2022-11-16 13:10:28 -0500 | [diff] [blame] | 95 | #ifndef CFG_SYS_NS16550_CLK |
| 96 | #define CFG_SYS_NS16550_CLK 0 |
Marek Vasut | fa4ce72 | 2016-05-25 02:13:03 +0200 | [diff] [blame] | 97 | #endif |
| 98 | |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 99 | /* |
| 100 | * Use this #ifdef for now since many platforms don't define in(), out(), |
| 101 | * out_le32(), etc. but we don't have #defines to indicate this. |
| 102 | * |
| 103 | * TODO(sjg@chromium.org): Add CONFIG options to indicate what I/O is available |
| 104 | * on a platform |
| 105 | */ |
| 106 | #ifdef CONFIG_NS16550_DYNAMIC |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 107 | static void serial_out_dynamic(struct ns16550_plat *plat, u8 *addr, |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 108 | int value) |
| 109 | { |
| 110 | if (plat->flags & NS16550_FLAG_IO) { |
| 111 | outb(value, addr); |
| 112 | } else if (plat->reg_width == 4) { |
| 113 | if (plat->flags & NS16550_FLAG_ENDIAN) { |
| 114 | if (plat->flags & NS16550_FLAG_BE) |
| 115 | out_be32(addr, value); |
| 116 | else |
| 117 | out_le32(addr, value); |
| 118 | } else { |
| 119 | writel(value, addr); |
| 120 | } |
| 121 | } else if (plat->flags & NS16550_FLAG_BE) { |
| 122 | writeb(value, addr + (1 << plat->reg_shift) - 1); |
| 123 | } else { |
| 124 | writeb(value, addr); |
| 125 | } |
| 126 | } |
| 127 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 128 | static int serial_in_dynamic(struct ns16550_plat *plat, u8 *addr) |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 129 | { |
| 130 | if (plat->flags & NS16550_FLAG_IO) { |
| 131 | return inb(addr); |
| 132 | } else if (plat->reg_width == 4) { |
| 133 | if (plat->flags & NS16550_FLAG_ENDIAN) { |
| 134 | if (plat->flags & NS16550_FLAG_BE) |
| 135 | return in_be32(addr); |
| 136 | else |
| 137 | return in_le32(addr); |
| 138 | } else { |
| 139 | return readl(addr); |
| 140 | } |
| 141 | } else if (plat->flags & NS16550_FLAG_BE) { |
| 142 | return readb(addr + (1 << plat->reg_shift) - 1); |
| 143 | } else { |
| 144 | return readb(addr); |
| 145 | } |
| 146 | } |
| 147 | #else |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 148 | static inline void serial_out_dynamic(struct ns16550_plat *plat, u8 *addr, |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 149 | int value) |
| 150 | { |
| 151 | } |
| 152 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 153 | static inline int serial_in_dynamic(struct ns16550_plat *plat, u8 *addr) |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 154 | { |
| 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | #endif /* CONFIG_NS16550_DYNAMIC */ |
| 159 | |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 160 | static void ns16550_writeb(struct ns16550 *port, int offset, int value) |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 161 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 162 | struct ns16550_plat *plat = port->plat; |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 163 | unsigned char *addr; |
| 164 | |
| 165 | offset *= 1 << plat->reg_shift; |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 166 | addr = (unsigned char *)plat->base + offset + plat->reg_offset; |
Paul Burton | df8ec55 | 2016-05-17 07:43:26 +0100 | [diff] [blame] | 167 | |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 168 | if (IS_ENABLED(CONFIG_NS16550_DYNAMIC)) |
| 169 | serial_out_dynamic(plat, addr, value); |
| 170 | else |
| 171 | serial_out_shift(addr, plat->reg_shift, value); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 172 | } |
| 173 | |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 174 | static int ns16550_readb(struct ns16550 *port, int offset) |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 175 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 176 | struct ns16550_plat *plat = port->plat; |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 177 | unsigned char *addr; |
| 178 | |
| 179 | offset *= 1 << plat->reg_shift; |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 180 | addr = (unsigned char *)plat->base + offset + plat->reg_offset; |
Simon Glass | 7657167 | 2015-01-26 18:27:08 -0700 | [diff] [blame] | 181 | |
Simon Glass | 62cbde4 | 2019-12-19 17:58:18 -0700 | [diff] [blame] | 182 | if (IS_ENABLED(CONFIG_NS16550_DYNAMIC)) |
| 183 | return serial_in_dynamic(plat, addr); |
| 184 | else |
| 185 | return serial_in_shift(addr, plat->reg_shift); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 186 | } |
| 187 | |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 188 | static u32 ns16550_getfcr(struct ns16550 *port) |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 189 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 190 | struct ns16550_plat *plat = port->plat; |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 191 | |
| 192 | return plat->fcr; |
| 193 | } |
| 194 | |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 195 | /* We can clean these up once everything is moved to driver model */ |
| 196 | #define serial_out(value, addr) \ |
Simon Glass | 363e6da | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 197 | ns16550_writeb(com_port, \ |
| 198 | (unsigned char *)addr - (unsigned char *)com_port, value) |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 199 | #define serial_in(addr) \ |
Simon Glass | 363e6da | 2015-02-27 22:06:26 -0700 | [diff] [blame] | 200 | ns16550_readb(com_port, \ |
| 201 | (unsigned char *)addr - (unsigned char *)com_port) |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 202 | #else |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 203 | static u32 ns16550_getfcr(struct ns16550 *port) |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 204 | { |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 205 | return UART_FCR_DEFVAL; |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 206 | } |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 207 | #endif |
| 208 | |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 209 | int ns16550_calc_divisor(struct ns16550 *port, int clock, int baudrate) |
Simon Glass | fa54eb1 | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 210 | { |
| 211 | const unsigned int mode_x_div = 16; |
| 212 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 213 | return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate); |
| 214 | } |
| 215 | |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 216 | static void ns16550_setbrg(struct ns16550 *com_port, int baud_divisor) |
Simon Glass | 8bbe33c | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 217 | { |
Simon Goldschmidt | 9ad3b04 | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 218 | /* to keep serial format, read lcr before writing BKSE */ |
| 219 | int lcr_val = serial_in(&com_port->lcr) & ~UART_LCR_BKSE; |
| 220 | |
| 221 | serial_out(UART_LCR_BKSE | lcr_val, &com_port->lcr); |
Simon Glass | 8bbe33c | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 222 | serial_out(baud_divisor & 0xff, &com_port->dll); |
| 223 | serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); |
Simon Goldschmidt | 9ad3b04 | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 224 | serial_out(lcr_val, &com_port->lcr); |
Simon Glass | 8bbe33c | 2014-09-04 16:27:33 -0600 | [diff] [blame] | 225 | } |
| 226 | |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 227 | void ns16550_init(struct ns16550 *com_port, int baud_divisor) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 228 | { |
Gregoire Gentil | 956a8ba | 2014-11-10 11:04:10 -0800 | [diff] [blame] | 229 | #if (defined(CONFIG_SPL_BUILD) && \ |
| 230 | (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX))) |
Manfred Huber | fd2aeac | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 231 | /* |
Gregoire Gentil | 956a8ba | 2014-11-10 11:04:10 -0800 | [diff] [blame] | 232 | * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode |
| 233 | * before SPL starts only THRE bit is set. We have to empty the |
| 234 | * transmitter before initialization starts. |
Manfred Huber | fd2aeac | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 235 | */ |
| 236 | if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE)) |
| 237 | == UART_LSR_THRE) { |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 238 | if (baud_divisor != -1) |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 239 | ns16550_setbrg(com_port, baud_divisor); |
Patrik Dahlström | 1c16606 | 2019-12-21 17:25:12 +0100 | [diff] [blame] | 240 | else { |
| 241 | // Re-use old baud rate divisor to flush transmit reg. |
| 242 | const int dll = serial_in(&com_port->dll); |
| 243 | const int dlm = serial_in(&com_port->dlm); |
| 244 | const int divisor = dll | (dlm << 8); |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 245 | ns16550_setbrg(com_port, divisor); |
Patrik Dahlström | 1c16606 | 2019-12-21 17:25:12 +0100 | [diff] [blame] | 246 | } |
Manfred Huber | fd2aeac | 2013-03-29 02:52:36 +0000 | [diff] [blame] | 247 | serial_out(0, &com_port->mdr1); |
| 248 | } |
| 249 | #endif |
| 250 | |
Scott Wood | cb55b33 | 2012-09-18 18:19:05 -0500 | [diff] [blame] | 251 | while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT)) |
| 252 | ; |
| 253 | |
Tom Rini | 6e7df1d | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 254 | serial_out(CFG_SYS_NS16550_IER, &com_port->ier); |
Lokesh Vutla | 5d75419 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 255 | #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_OMAP_SERIAL) |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 256 | serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 257 | #endif |
Ley Foon Tan | b051eec | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 258 | |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 259 | serial_out(UART_MCRVAL, &com_port->mcr); |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 260 | serial_out(ns16550_getfcr(com_port), &com_port->fcr); |
Simon Goldschmidt | 9ad3b04 | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 261 | /* initialize serial config to 8N1 before writing baudrate */ |
| 262 | serial_out(UART_LCRVAL, &com_port->lcr); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 263 | if (baud_divisor != -1) |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 264 | ns16550_setbrg(com_port, baud_divisor); |
Lokesh Vutla | 5d75419 | 2018-08-27 15:55:24 +0530 | [diff] [blame] | 265 | #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_SOC_DA8XX) || \ |
| 266 | defined(CONFIG_OMAP_SERIAL) |
Simon Glass | f8df9d0 | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 267 | /* /16 is proper to hit 115200 with 48MHz */ |
| 268 | serial_out(0, &com_port->mdr1); |
Tom Rini | 89024dd | 2017-05-12 22:33:16 -0400 | [diff] [blame] | 269 | #endif |
Tom Rini | f899cc1 | 2021-09-12 20:32:32 -0400 | [diff] [blame] | 270 | #if defined(CONFIG_ARCH_KEYSTONE) |
Vitaly Andrianov | ef509b9 | 2014-04-04 13:16:53 -0400 | [diff] [blame] | 271 | serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC); |
| 272 | #endif |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Tom Rini | 57c3afb | 2022-11-16 13:10:26 -0500 | [diff] [blame] | 275 | #if !CONFIG_IS_ENABLED(NS16550_MIN_FUNCTIONS) |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 276 | void ns16550_reinit(struct ns16550 *com_port, int baud_divisor) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 277 | { |
Tom Rini | 6e7df1d | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 278 | serial_out(CFG_SYS_NS16550_IER, &com_port->ier); |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 279 | ns16550_setbrg(com_port, 0); |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 280 | serial_out(UART_MCRVAL, &com_port->mcr); |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 281 | serial_out(ns16550_getfcr(com_port), &com_port->fcr); |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 282 | ns16550_setbrg(com_port, baud_divisor); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 283 | } |
Tom Rini | 57c3afb | 2022-11-16 13:10:26 -0500 | [diff] [blame] | 284 | #endif /* !CONFIG_IS_ENABLED(NS16550_MIN_FUNCTIONS) */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 285 | |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 286 | void ns16550_putc(struct ns16550 *com_port, char c) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 287 | { |
Simon Glass | f8df9d0 | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 288 | while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0) |
| 289 | ; |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 290 | serial_out(c, &com_port->thr); |
Stefan Roese | 1a2d9b3 | 2010-10-12 09:39:45 +0200 | [diff] [blame] | 291 | |
| 292 | /* |
| 293 | * Call watchdog_reset() upon newline. This is done here in putc |
| 294 | * since the environment code uses a single puts() to print the complete |
| 295 | * environment upon "printenv". So we can't put this watchdog call |
| 296 | * in puts(). |
| 297 | */ |
| 298 | if (c == '\n') |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 299 | schedule(); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Tom Rini | 57c3afb | 2022-11-16 13:10:26 -0500 | [diff] [blame] | 302 | #if !CONFIG_IS_ENABLED(NS16550_MIN_FUNCTIONS) |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 303 | char ns16550_getc(struct ns16550 *com_port) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 304 | { |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 305 | while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) { |
Marek Vasut | f204138 | 2012-09-15 10:25:19 +0200 | [diff] [blame] | 306 | #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY) |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 307 | extern void usbtty_poll(void); |
| 308 | usbtty_poll(); |
| 309 | #endif |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 310 | schedule(); |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 311 | } |
Graeme Russ | 167cdad | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 312 | return serial_in(&com_port->rbr); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 313 | } |
| 314 | |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 315 | int ns16550_tstc(struct ns16550 *com_port) |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 316 | { |
Simon Glass | f8df9d0 | 2011-10-15 19:14:09 +0000 | [diff] [blame] | 317 | return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0; |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 318 | } |
| 319 | |
Tom Rini | 57c3afb | 2022-11-16 13:10:26 -0500 | [diff] [blame] | 320 | #endif /* !CONFIG_IS_ENABLED(NS16550_MIN_FUNCTIONS) */ |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 321 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 322 | #ifdef CONFIG_DEBUG_UART_NS16550 |
| 323 | |
| 324 | #include <debug_uart.h> |
| 325 | |
Simon Glass | 97b0597 | 2015-10-18 19:51:23 -0600 | [diff] [blame] | 326 | static inline void _debug_uart_init(void) |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 327 | { |
Pali Rohár | d293759 | 2022-05-06 11:05:16 +0200 | [diff] [blame] | 328 | struct ns16550 *com_port = (struct ns16550 *)CONFIG_VAL(DEBUG_UART_BASE); |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 329 | int baud_divisor; |
| 330 | |
Pali Rohár | 5e998b4 | 2022-06-23 14:13:56 +0200 | [diff] [blame] | 331 | /* Wait until tx buffer is empty */ |
| 332 | while (!(serial_din(&com_port->lsr) & UART_LSR_TEMT)) |
| 333 | ; |
| 334 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 335 | /* |
| 336 | * We copy the code from above because it is already horribly messy. |
| 337 | * Trying to refactor to nicely remove the duplication doesn't seem |
| 338 | * feasible. The better fix is to move all users of this driver to |
| 339 | * driver model. |
| 340 | */ |
Marek Vasut | 03c6f17 | 2016-05-25 02:13:16 +0200 | [diff] [blame] | 341 | baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK, |
| 342 | CONFIG_BAUDRATE); |
Tom Rini | 6e7df1d | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 343 | serial_dout(&com_port->ier, CFG_SYS_NS16550_IER); |
Simon Glass | 6e780c7 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 344 | serial_dout(&com_port->mcr, UART_MCRVAL); |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 345 | serial_dout(&com_port->fcr, UART_FCR_DEFVAL); |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 346 | |
Simon Glass | 6e780c7 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 347 | serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL); |
| 348 | serial_dout(&com_port->dll, baud_divisor & 0xff); |
| 349 | serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff); |
| 350 | serial_dout(&com_port->lcr, UART_LCRVAL); |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 353 | static inline int NS16550_read_baud_divisor(struct ns16550 *com_port) |
Simon Goldschmidt | c4448bd | 2019-01-09 20:35:31 +0100 | [diff] [blame] | 354 | { |
| 355 | int ret; |
| 356 | |
| 357 | serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL); |
| 358 | ret = serial_din(&com_port->dll) & 0xff; |
| 359 | ret |= (serial_din(&com_port->dlm) & 0xff) << 8; |
| 360 | serial_dout(&com_port->lcr, UART_LCRVAL); |
| 361 | |
| 362 | return ret; |
| 363 | } |
| 364 | |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 365 | static inline void _debug_uart_putc(int ch) |
| 366 | { |
Pali Rohár | d293759 | 2022-05-06 11:05:16 +0200 | [diff] [blame] | 367 | struct ns16550 *com_port = (struct ns16550 *)CONFIG_VAL(DEBUG_UART_BASE); |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 368 | |
Simon Goldschmidt | c4448bd | 2019-01-09 20:35:31 +0100 | [diff] [blame] | 369 | while (!(serial_din(&com_port->lsr) & UART_LSR_THRE)) { |
| 370 | #ifdef CONFIG_DEBUG_UART_NS16550_CHECK_ENABLED |
| 371 | if (!NS16550_read_baud_divisor(com_port)) |
| 372 | return; |
| 373 | #endif |
| 374 | } |
Simon Glass | 6e780c7 | 2015-06-23 15:39:06 -0600 | [diff] [blame] | 375 | serial_dout(&com_port->thr, ch); |
Simon Glass | 21d0043 | 2015-01-26 18:27:09 -0700 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | DEBUG_UART_FUNCS |
| 379 | |
| 380 | #endif |
| 381 | |
Simon Glass | 2e2c514 | 2019-09-25 08:11:14 -0600 | [diff] [blame] | 382 | #if CONFIG_IS_ENABLED(DM_SERIAL) |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 383 | static int ns16550_serial_putc(struct udevice *dev, const char ch) |
| 384 | { |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 385 | struct ns16550 *const com_port = dev_get_priv(dev); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 386 | |
| 387 | if (!(serial_in(&com_port->lsr) & UART_LSR_THRE)) |
| 388 | return -EAGAIN; |
| 389 | serial_out(ch, &com_port->thr); |
| 390 | |
| 391 | /* |
| 392 | * Call watchdog_reset() upon newline. This is done here in putc |
| 393 | * since the environment code uses a single puts() to print the complete |
| 394 | * environment upon "printenv". So we can't put this watchdog call |
| 395 | * in puts(). |
| 396 | */ |
| 397 | if (ch == '\n') |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 398 | schedule(); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 399 | |
| 400 | return 0; |
| 401 | } |
| 402 | |
| 403 | static int ns16550_serial_pending(struct udevice *dev, bool input) |
| 404 | { |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 405 | struct ns16550 *const com_port = dev_get_priv(dev); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 406 | |
| 407 | if (input) |
Mario Six | 4dbf9be | 2018-01-15 11:09:49 +0100 | [diff] [blame] | 408 | return (serial_in(&com_port->lsr) & UART_LSR_DR) ? 1 : 0; |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 409 | else |
Mario Six | 4dbf9be | 2018-01-15 11:09:49 +0100 | [diff] [blame] | 410 | return (serial_in(&com_port->lsr) & UART_LSR_THRE) ? 0 : 1; |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | static int ns16550_serial_getc(struct udevice *dev) |
| 414 | { |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 415 | struct ns16550 *const com_port = dev_get_priv(dev); |
Stefan Roese | 7fded0c | 2017-08-16 17:37:15 +0200 | [diff] [blame] | 416 | |
| 417 | if (!(serial_in(&com_port->lsr) & UART_LSR_DR)) |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 418 | return -EAGAIN; |
| 419 | |
Stefan Roese | 7fded0c | 2017-08-16 17:37:15 +0200 | [diff] [blame] | 420 | return serial_in(&com_port->rbr); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | static int ns16550_serial_setbrg(struct udevice *dev, int baudrate) |
| 424 | { |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 425 | struct ns16550 *const com_port = dev_get_priv(dev); |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 426 | struct ns16550_plat *plat = com_port->plat; |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 427 | int clock_divisor; |
| 428 | |
| 429 | clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate); |
| 430 | |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 431 | ns16550_setbrg(com_port, clock_divisor); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 432 | |
| 433 | return 0; |
| 434 | } |
| 435 | |
Simon Goldschmidt | 9ad3b04 | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 436 | static int ns16550_serial_setconfig(struct udevice *dev, uint serial_config) |
| 437 | { |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 438 | struct ns16550 *const com_port = dev_get_priv(dev); |
Simon Goldschmidt | 9ad3b04 | 2018-11-02 21:28:08 +0100 | [diff] [blame] | 439 | int lcr_val = UART_LCR_WLS_8; |
| 440 | uint parity = SERIAL_GET_PARITY(serial_config); |
| 441 | uint bits = SERIAL_GET_BITS(serial_config); |
| 442 | uint stop = SERIAL_GET_STOP(serial_config); |
| 443 | |
| 444 | /* |
| 445 | * only parity config is implemented, check if other serial settings |
| 446 | * are the default one. |
| 447 | */ |
| 448 | if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP) |
| 449 | return -ENOTSUPP; /* not supported in driver*/ |
| 450 | |
| 451 | switch (parity) { |
| 452 | case SERIAL_PAR_NONE: |
| 453 | /* no bits to add */ |
| 454 | break; |
| 455 | case SERIAL_PAR_ODD: |
| 456 | lcr_val |= UART_LCR_PEN; |
| 457 | break; |
| 458 | case SERIAL_PAR_EVEN: |
| 459 | lcr_val |= UART_LCR_PEN | UART_LCR_EPS; |
| 460 | break; |
| 461 | default: |
| 462 | return -ENOTSUPP; /* not supported in driver*/ |
| 463 | } |
| 464 | |
| 465 | serial_out(lcr_val, &com_port->lcr); |
| 466 | return 0; |
| 467 | } |
| 468 | |
Andy Shevchenko | 50bf7d0 | 2018-11-20 23:52:36 +0200 | [diff] [blame] | 469 | static int ns16550_serial_getinfo(struct udevice *dev, |
| 470 | struct serial_device_info *info) |
| 471 | { |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 472 | struct ns16550 *const com_port = dev_get_priv(dev); |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 473 | struct ns16550_plat *plat = com_port->plat; |
Andy Shevchenko | 50bf7d0 | 2018-11-20 23:52:36 +0200 | [diff] [blame] | 474 | |
| 475 | info->type = SERIAL_CHIP_16550_COMPATIBLE; |
| 476 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
| 477 | info->addr_space = SERIAL_ADDRESS_SPACE_IO; |
| 478 | #else |
| 479 | info->addr_space = SERIAL_ADDRESS_SPACE_MEMORY; |
| 480 | #endif |
| 481 | info->addr = plat->base; |
| 482 | info->reg_width = plat->reg_width; |
| 483 | info->reg_shift = plat->reg_shift; |
| 484 | info->reg_offset = plat->reg_offset; |
Andy Shevchenko | 5db92a0 | 2020-02-27 17:21:55 +0200 | [diff] [blame] | 485 | info->clock = plat->clock; |
| 486 | |
Andy Shevchenko | 50bf7d0 | 2018-11-20 23:52:36 +0200 | [diff] [blame] | 487 | return 0; |
| 488 | } |
| 489 | |
Bin Meng | 09bd084 | 2021-02-03 21:22:40 +0800 | [diff] [blame] | 490 | static int ns16550_serial_assign_base(struct ns16550_plat *plat, fdt_addr_t base) |
Wolfgang Wallner | 720f9e1 | 2020-03-02 14:41:14 +0100 | [diff] [blame] | 491 | { |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 492 | if (base == FDT_ADDR_T_NONE) |
Wolfgang Wallner | 720f9e1 | 2020-03-02 14:41:14 +0100 | [diff] [blame] | 493 | return -EINVAL; |
| 494 | |
| 495 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 496 | plat->base = base; |
Wolfgang Wallner | 720f9e1 | 2020-03-02 14:41:14 +0100 | [diff] [blame] | 497 | #else |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 498 | plat->base = (unsigned long)map_physmem(base, 0, MAP_NOCACHE); |
Wolfgang Wallner | 720f9e1 | 2020-03-02 14:41:14 +0100 | [diff] [blame] | 499 | #endif |
| 500 | |
| 501 | return 0; |
| 502 | } |
Wolfgang Wallner | 720f9e1 | 2020-03-02 14:41:14 +0100 | [diff] [blame] | 503 | |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 504 | int ns16550_serial_probe(struct udevice *dev) |
| 505 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 506 | struct ns16550_plat *plat = dev_get_plat(dev); |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 507 | struct ns16550 *const com_port = dev_get_priv(dev); |
Ley Foon Tan | b051eec | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 508 | struct reset_ctl_bulk reset_bulk; |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 509 | fdt_addr_t addr; |
Ley Foon Tan | b051eec | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 510 | int ret; |
| 511 | |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 512 | /* |
| 513 | * If we are on PCI bus, either directly attached to a PCI root port, |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 514 | * or via a PCI bridge, assign plat->base before probing hardware. |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 515 | */ |
| 516 | if (device_is_on_pci_bus(dev)) { |
| 517 | addr = devfdt_get_addr_pci(dev); |
| 518 | ret = ns16550_serial_assign_base(plat, addr); |
| 519 | if (ret) |
| 520 | return ret; |
| 521 | } |
Wolfgang Wallner | 720f9e1 | 2020-03-02 14:41:14 +0100 | [diff] [blame] | 522 | |
Ley Foon Tan | b051eec | 2018-06-14 18:45:22 +0800 | [diff] [blame] | 523 | ret = reset_get_bulk(dev, &reset_bulk); |
| 524 | if (!ret) |
| 525 | reset_deassert_bulk(&reset_bulk); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 526 | |
Simon Glass | c69cda2 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 527 | com_port->plat = dev_get_plat(dev); |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 528 | ns16550_init(com_port, -1); |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 529 | |
| 530 | return 0; |
| 531 | } |
| 532 | |
Marek Vasut | 79fd928 | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 533 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
| 534 | enum { |
| 535 | PORT_NS16550 = 0, |
Marek Vasut | 0b060ee | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 536 | PORT_JZ4780, |
Marek Vasut | 79fd928 | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 537 | }; |
| 538 | #endif |
| 539 | |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 540 | #if CONFIG_IS_ENABLED(OF_REAL) |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 541 | int ns16550_serial_of_to_plat(struct udevice *dev) |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 542 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 543 | struct ns16550_plat *plat = dev_get_plat(dev); |
Marek Vasut | 0b060ee | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 544 | const u32 port_type = dev_get_driver_data(dev); |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 545 | fdt_addr_t addr; |
Masahiro Yamada | 021abf6 | 2016-09-26 20:45:27 +0900 | [diff] [blame] | 546 | struct clk clk; |
| 547 | int err; |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 548 | |
Bin Meng | 9e6ce62 | 2020-04-03 18:35:32 -0700 | [diff] [blame] | 549 | addr = dev_read_addr(dev); |
| 550 | err = ns16550_serial_assign_base(plat, addr); |
| 551 | if (err && !device_is_on_pci_bus(dev)) |
| 552 | return err; |
| 553 | |
Philipp Tomsich | 3d40479 | 2017-06-07 18:46:02 +0200 | [diff] [blame] | 554 | plat->reg_offset = dev_read_u32_default(dev, "reg-offset", 0); |
| 555 | plat->reg_shift = dev_read_u32_default(dev, "reg-shift", 0); |
Andy Shevchenko | 4e72077 | 2018-11-20 23:52:35 +0200 | [diff] [blame] | 556 | plat->reg_width = dev_read_u32_default(dev, "reg-io-width", 1); |
Paul Burton | 50fce1d | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 557 | |
| 558 | err = clk_get_by_index(dev, 0, &clk); |
| 559 | if (!err) { |
| 560 | err = clk_get_rate(&clk); |
| 561 | if (!IS_ERR_VALUE(err)) |
| 562 | plat->clock = err; |
Alexandre Courbot | ab895d6 | 2016-09-30 17:37:00 +0900 | [diff] [blame] | 563 | } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) { |
Paul Burton | 50fce1d | 2016-09-08 07:47:29 +0100 | [diff] [blame] | 564 | debug("ns16550 failed to get clock\n"); |
| 565 | return err; |
| 566 | } |
| 567 | |
| 568 | if (!plat->clock) |
Philipp Tomsich | 3d40479 | 2017-06-07 18:46:02 +0200 | [diff] [blame] | 569 | plat->clock = dev_read_u32_default(dev, "clock-frequency", |
Tom Rini | 9109213 | 2022-11-16 13:10:28 -0500 | [diff] [blame] | 570 | CFG_SYS_NS16550_CLK); |
Bin Meng | 384b62c | 2021-02-03 22:42:25 +0800 | [diff] [blame] | 571 | if (!plat->clock) |
Tom Rini | 9109213 | 2022-11-16 13:10:28 -0500 | [diff] [blame] | 572 | plat->clock = CFG_SYS_NS16550_CLK; |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 573 | if (!plat->clock) { |
| 574 | debug("ns16550 clock not defined\n"); |
| 575 | return -EINVAL; |
| 576 | } |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 577 | |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 578 | plat->fcr = UART_FCR_DEFVAL; |
Marek Vasut | 0b060ee | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 579 | if (port_type == PORT_JZ4780) |
| 580 | plat->fcr |= UART_FCR_UME; |
Marek Vasut | 65f8380 | 2016-12-01 02:06:29 +0100 | [diff] [blame] | 581 | |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 582 | return 0; |
| 583 | } |
Simon Glass | 11c1a87 | 2014-10-22 21:37:05 -0600 | [diff] [blame] | 584 | #endif |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 585 | |
| 586 | const struct dm_serial_ops ns16550_serial_ops = { |
| 587 | .putc = ns16550_serial_putc, |
| 588 | .pending = ns16550_serial_pending, |
| 589 | .getc = ns16550_serial_getc, |
| 590 | .setbrg = ns16550_serial_setbrg, |
Andy Shevchenko | 50bf7d0 | 2018-11-20 23:52:36 +0200 | [diff] [blame] | 591 | .setconfig = ns16550_serial_setconfig, |
| 592 | .getinfo = ns16550_serial_getinfo, |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 593 | }; |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 594 | |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 595 | #if CONFIG_IS_ENABLED(OF_REAL) |
Thomas Chou | cc4228f | 2015-12-14 20:45:09 +0800 | [diff] [blame] | 596 | /* |
| 597 | * Please consider existing compatible strings before adding a new |
| 598 | * one to keep this table compact. Or you may add a generic "ns16550" |
| 599 | * compatible string to your dts. |
| 600 | */ |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 601 | static const struct udevice_id ns16550_serial_ids[] = { |
Marek Vasut | 79fd928 | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 602 | { .compatible = "ns16550", .data = PORT_NS16550 }, |
| 603 | { .compatible = "ns16550a", .data = PORT_NS16550 }, |
Marek Vasut | 0b060ee | 2016-12-01 02:06:31 +0100 | [diff] [blame] | 604 | { .compatible = "ingenic,jz4780-uart", .data = PORT_JZ4780 }, |
Marek Vasut | 79fd928 | 2016-12-01 02:06:30 +0100 | [diff] [blame] | 605 | { .compatible = "nvidia,tegra20-uart", .data = PORT_NS16550 }, |
| 606 | { .compatible = "snps,dw-apb-uart", .data = PORT_NS16550 }, |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 607 | {} |
| 608 | }; |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 609 | #endif /* OF_REAL */ |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 610 | |
Simon Glass | b7e2983 | 2015-12-13 21:36:59 -0700 | [diff] [blame] | 611 | #if CONFIG_IS_ENABLED(SERIAL_PRESENT) |
Alexandru Gagniuc | 6f8c351 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 612 | |
| 613 | /* TODO(sjg@chromium.org): Integrate this into a macro like CONFIG_IS_ENABLED */ |
| 614 | #if !defined(CONFIG_TPL_BUILD) || defined(CONFIG_TPL_DM_SERIAL) |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 615 | U_BOOT_DRIVER(ns16550_serial) = { |
| 616 | .name = "ns16550_serial", |
| 617 | .id = UCLASS_SERIAL, |
Simon Glass | 414cc15 | 2021-08-07 07:24:03 -0600 | [diff] [blame] | 618 | #if CONFIG_IS_ENABLED(OF_REAL) |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 619 | .of_match = ns16550_serial_ids, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 620 | .of_to_plat = ns16550_serial_of_to_plat, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 621 | .plat_auto = sizeof(struct ns16550_plat), |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 622 | #endif |
Simon Glass | d30c720 | 2020-12-22 19:30:18 -0700 | [diff] [blame] | 623 | .priv_auto = sizeof(struct ns16550), |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 624 | .probe = ns16550_serial_probe, |
| 625 | .ops = &ns16550_serial_ops, |
Bin Meng | 4687919 | 2018-10-24 06:36:36 -0700 | [diff] [blame] | 626 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | b7e5a64 | 2015-12-04 08:58:38 -0700 | [diff] [blame] | 627 | .flags = DM_FLAG_PRE_RELOC, |
Bin Meng | 4687919 | 2018-10-24 06:36:36 -0700 | [diff] [blame] | 628 | #endif |
Thomas Chou | 8e62d32 | 2015-11-19 21:48:05 +0800 | [diff] [blame] | 629 | }; |
Walter Lozano | addf358 | 2020-06-25 01:10:06 -0300 | [diff] [blame] | 630 | |
Simon Glass | bdf8fd7 | 2020-12-28 20:34:57 -0700 | [diff] [blame] | 631 | DM_DRIVER_ALIAS(ns16550_serial, ti_da830_uart) |
Simon Glass | b7e2983 | 2015-12-13 21:36:59 -0700 | [diff] [blame] | 632 | #endif |
Alexandru Gagniuc | 6f8c351 | 2017-03-27 12:54:19 -0700 | [diff] [blame] | 633 | #endif /* SERIAL_PRESENT */ |
| 634 | |
Simon Glass | 12e431b | 2014-09-04 16:27:34 -0600 | [diff] [blame] | 635 | #endif /* CONFIG_DM_SERIAL */ |