blob: f3bd8dbcdf50895594ea3110e39c38b3a3d401d1 [file] [log] [blame]
wdenke85390d2002-04-01 14:29:03 +00001/*
2 * COM1 NS16550 support
Stefan Roesea47a12b2010-04-15 16:07:28 +02003 * originally from linux source (arch/powerpc/boot/ns16550.c)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02004 * modified to use CONFIG_SYS_ISA_MEM and new defines
wdenke85390d2002-04-01 14:29:03 +00005 */
6
Simon Glassfa54eb12014-09-04 16:27:32 -06007#include <common.h>
Paul Burton50fce1d2016-09-08 07:47:29 +01008#include <clk.h>
Simon Glass12e431b2014-09-04 16:27:34 -06009#include <dm.h>
10#include <errno.h>
wdenke85390d2002-04-01 14:29:03 +000011#include <ns16550.h>
Ley Foon Tanb051eec2018-06-14 18:45:22 +080012#include <reset.h>
Simon Glass12e431b2014-09-04 16:27:34 -060013#include <serial.h>
Ladislav Michla1b322a2010-02-01 23:34:25 +010014#include <watchdog.h>
Graeme Russ167cdad2010-04-24 00:05:46 +100015#include <linux/types.h>
16#include <asm/io.h>
wdenke85390d2002-04-01 14:29:03 +000017
Simon Glass12e431b2014-09-04 16:27:34 -060018DECLARE_GLOBAL_DATA_PTR;
19
Detlev Zundel200779e2009-04-03 11:53:01 +020020#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 Glass12e431b2014-09-04 16:27:34 -060023
24#ifndef CONFIG_DM_SERIAL
Graeme Russ167cdad2010-04-24 00:05:46 +100025#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glassf8df9d02011-10-15 19:14:09 +000026#define serial_out(x, y) outb(x, (ulong)y)
27#define serial_in(y) inb((ulong)y)
Dave Aldridge79df1202011-09-01 22:47:14 +000028#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
Simon Glassf8df9d02011-10-15 19:14:09 +000029#define serial_out(x, y) out_be32(y, x)
30#define serial_in(y) in_be32(y)
Dave Aldridge79df1202011-09-01 22:47:14 +000031#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
Simon Glassf8df9d02011-10-15 19:14:09 +000032#define serial_out(x, y) out_le32(y, x)
33#define serial_in(y) in_le32(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100034#else
Simon Glassf8df9d02011-10-15 19:14:09 +000035#define serial_out(x, y) writeb(x, y)
36#define serial_in(y) readb(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100037#endif
Simon Glass12e431b2014-09-04 16:27:34 -060038#endif /* !CONFIG_DM_SERIAL */
wdenke85390d2002-04-01 14:29:03 +000039
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +030040#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-04-04 13:16:53 -040041#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, Muralidharand57dee52014-04-09 15:38:46 -040043#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 Andrianovef509b92014-04-04 13:16:53 -040049#endif
50
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053051#ifndef CONFIG_SYS_NS16550_IER
52#define CONFIG_SYS_NS16550_IER 0x00
53#endif /* CONFIG_SYS_NS16550_IER */
54
Simon Glass363e6da2015-02-27 22:06:26 -070055static inline void serial_out_shift(void *addr, int shift, int value)
Simon Glass76571672015-01-26 18:27:08 -070056{
57#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
58 outb(value, (ulong)addr);
Bernhard Messerklinger78b7d372018-02-15 09:02:26 +010059#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
Simon Glass76571672015-01-26 18:27:08 -070060 out_le32(addr, value);
61#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
62 out_be32(addr, value);
Simon Glass90914002015-05-12 14:55:02 -060063#elif defined(CONFIG_SYS_NS16550_MEM32)
64 writel(value, addr);
Simon Glass76571672015-01-26 18:27:08 -070065#elif defined(CONFIG_SYS_BIG_ENDIAN)
66 writeb(value, addr + (1 << shift) - 1);
67#else
68 writeb(value, addr);
69#endif
70}
71
Simon Glass363e6da2015-02-27 22:06:26 -070072static inline int serial_in_shift(void *addr, int shift)
Simon Glass76571672015-01-26 18:27:08 -070073{
74#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
75 return inb((ulong)addr);
Bernhard Messerklinger78b7d372018-02-15 09:02:26 +010076#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
Simon Glass76571672015-01-26 18:27:08 -070077 return in_le32(addr);
78#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
79 return in_be32(addr);
Simon Glass90914002015-05-12 14:55:02 -060080#elif defined(CONFIG_SYS_NS16550_MEM32)
81 return readl(addr);
Simon Glass76571672015-01-26 18:27:08 -070082#elif defined(CONFIG_SYS_BIG_ENDIAN)
Axel Lin20379c12015-02-28 15:55:36 +080083 return readb(addr + (1 << shift) - 1);
Simon Glass76571672015-01-26 18:27:08 -070084#else
85 return readb(addr);
86#endif
87}
88
Marek Vasutfa4ce722016-05-25 02:13:03 +020089#ifdef CONFIG_DM_SERIAL
90
91#ifndef CONFIG_SYS_NS16550_CLK
92#define CONFIG_SYS_NS16550_CLK 0
93#endif
94
Simon Glass12e431b2014-09-04 16:27:34 -060095static 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 Burtondf8ec552016-05-17 07:43:26 +0100101 addr = (unsigned char *)plat->base + offset;
102
Simon Glass12e431b2014-09-04 16:27:34 -0600103 /*
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 Simek59b35dd2016-02-16 16:17:49 +0100107 serial_out_shift(addr + plat->reg_offset, plat->reg_shift, value);
Simon Glass12e431b2014-09-04 16:27:34 -0600108}
109
110static 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 Burtondf8ec552016-05-17 07:43:26 +0100116 addr = (unsigned char *)plat->base + offset;
Simon Glass76571672015-01-26 18:27:08 -0700117
Michal Simek59b35dd2016-02-16 16:17:49 +0100118 return serial_in_shift(addr + plat->reg_offset, plat->reg_shift);
Simon Glass12e431b2014-09-04 16:27:34 -0600119}
120
Marek Vasut65f83802016-12-01 02:06:29 +0100121static u32 ns16550_getfcr(NS16550_t port)
122{
123 struct ns16550_platdata *plat = port->plat;
124
125 return plat->fcr;
126}
127
Simon Glass12e431b2014-09-04 16:27:34 -0600128/* We can clean these up once everything is moved to driver model */
129#define serial_out(value, addr) \
Simon Glass363e6da2015-02-27 22:06:26 -0700130 ns16550_writeb(com_port, \
131 (unsigned char *)addr - (unsigned char *)com_port, value)
Simon Glass12e431b2014-09-04 16:27:34 -0600132#define serial_in(addr) \
Simon Glass363e6da2015-02-27 22:06:26 -0700133 ns16550_readb(com_port, \
134 (unsigned char *)addr - (unsigned char *)com_port)
Marek Vasut65f83802016-12-01 02:06:29 +0100135#else
136static u32 ns16550_getfcr(NS16550_t port)
137{
Heiko Schocher17fa0322017-01-18 08:05:49 +0100138 return UART_FCR_DEFVAL;
Marek Vasut65f83802016-12-01 02:06:29 +0100139}
Simon Glass12e431b2014-09-04 16:27:34 -0600140#endif
141
Marek Vasut03c6f172016-05-25 02:13:16 +0200142int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
Simon Glassfa54eb12014-09-04 16:27:32 -0600143{
144 const unsigned int mode_x_div = 16;
145
Simon Glass21d00432015-01-26 18:27:09 -0700146 return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
147}
148
Simon Glass8bbe33c2014-09-04 16:27:33 -0600149static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
150{
Simon Goldschmidt9ad3b042018-11-02 21:28:08 +0100151 /* to keep serial format, read lcr before writing BKSE */
152 int lcr_val = serial_in(&com_port->lcr) & ~UART_LCR_BKSE;
153
154 serial_out(UART_LCR_BKSE | lcr_val, &com_port->lcr);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600155 serial_out(baud_divisor & 0xff, &com_port->dll);
156 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
Simon Goldschmidt9ad3b042018-11-02 21:28:08 +0100157 serial_out(lcr_val, &com_port->lcr);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600158}
159
Simon Glassf8df9d02011-10-15 19:14:09 +0000160void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000161{
Gregoire Gentil956a8ba2014-11-10 11:04:10 -0800162#if (defined(CONFIG_SPL_BUILD) && \
163 (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000164 /*
Gregoire Gentil956a8ba2014-11-10 11:04:10 -0800165 * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode
166 * before SPL starts only THRE bit is set. We have to empty the
167 * transmitter before initialization starts.
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000168 */
169 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
170 == UART_LSR_THRE) {
Simon Glass12e431b2014-09-04 16:27:34 -0600171 if (baud_divisor != -1)
172 NS16550_setbrg(com_port, baud_divisor);
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000173 serial_out(0, &com_port->mdr1);
174 }
175#endif
176
Scott Woodcb55b332012-09-18 18:19:05 -0500177 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
178 ;
179
Prafulla Wadaskara160ea02010-10-27 21:58:31 +0530180 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Lokesh Vutla5d754192018-08-27 15:55:24 +0530181#if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_OMAP_SERIAL)
Graeme Russ167cdad2010-04-24 00:05:46 +1000182 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk945af8d2003-07-16 21:53:01 +0000183#endif
Ley Foon Tanb051eec2018-06-14 18:45:22 +0800184
Graeme Russ167cdad2010-04-24 00:05:46 +1000185 serial_out(UART_MCRVAL, &com_port->mcr);
Marek Vasut65f83802016-12-01 02:06:29 +0100186 serial_out(ns16550_getfcr(com_port), &com_port->fcr);
Simon Goldschmidt9ad3b042018-11-02 21:28:08 +0100187 /* initialize serial config to 8N1 before writing baudrate */
188 serial_out(UART_LCRVAL, &com_port->lcr);
Simon Glass12e431b2014-09-04 16:27:34 -0600189 if (baud_divisor != -1)
190 NS16550_setbrg(com_port, baud_divisor);
Lokesh Vutla5d754192018-08-27 15:55:24 +0530191#if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_SOC_DA8XX) || \
192 defined(CONFIG_OMAP_SERIAL)
Simon Glassf8df9d02011-10-15 19:14:09 +0000193 /* /16 is proper to hit 115200 with 48MHz */
194 serial_out(0, &com_port->mdr1);
Tom Rini89024dd2017-05-12 22:33:16 -0400195#endif
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +0300196#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-04-04 13:16:53 -0400197 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
198#endif
wdenke85390d2002-04-01 14:29:03 +0000199}
200
Ron Madridf5675aa2009-02-18 14:30:44 -0800201#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000202void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000203{
Prafulla Wadaskara160ea02010-10-27 21:58:31 +0530204 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600205 NS16550_setbrg(com_port, 0);
Graeme Russ167cdad2010-04-24 00:05:46 +1000206 serial_out(UART_MCRVAL, &com_port->mcr);
Marek Vasut65f83802016-12-01 02:06:29 +0100207 serial_out(ns16550_getfcr(com_port), &com_port->fcr);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600208 NS16550_setbrg(com_port, baud_divisor);
wdenke85390d2002-04-01 14:29:03 +0000209}
Ron Madridf5675aa2009-02-18 14:30:44 -0800210#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000211
Simon Glassf8df9d02011-10-15 19:14:09 +0000212void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000213{
Simon Glassf8df9d02011-10-15 19:14:09 +0000214 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
215 ;
Graeme Russ167cdad2010-04-24 00:05:46 +1000216 serial_out(c, &com_port->thr);
Stefan Roese1a2d9b32010-10-12 09:39:45 +0200217
218 /*
219 * Call watchdog_reset() upon newline. This is done here in putc
220 * since the environment code uses a single puts() to print the complete
221 * environment upon "printenv". So we can't put this watchdog call
222 * in puts().
223 */
224 if (c == '\n')
225 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000226}
227
Ron Madridf5675aa2009-02-18 14:30:44 -0800228#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000229char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000230{
Graeme Russ167cdad2010-04-24 00:05:46 +1000231 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasutf2041382012-09-15 10:25:19 +0200232#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk232c1502004-03-12 00:14:09 +0000233 extern void usbtty_poll(void);
234 usbtty_poll();
235#endif
Ladislav Michla1b322a2010-02-01 23:34:25 +0100236 WATCHDOG_RESET();
wdenk232c1502004-03-12 00:14:09 +0000237 }
Graeme Russ167cdad2010-04-24 00:05:46 +1000238 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000239}
240
Simon Glassf8df9d02011-10-15 19:14:09 +0000241int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000242{
Simon Glassf8df9d02011-10-15 19:14:09 +0000243 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000244}
245
Ron Madridf5675aa2009-02-18 14:30:44 -0800246#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
Simon Glass12e431b2014-09-04 16:27:34 -0600247
Simon Glass21d00432015-01-26 18:27:09 -0700248#ifdef CONFIG_DEBUG_UART_NS16550
249
250#include <debug_uart.h>
251
Simon Glass97b05972015-10-18 19:51:23 -0600252static inline void _debug_uart_init(void)
Simon Glass21d00432015-01-26 18:27:09 -0700253{
254 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
255 int baud_divisor;
256
257 /*
258 * We copy the code from above because it is already horribly messy.
259 * Trying to refactor to nicely remove the duplication doesn't seem
260 * feasible. The better fix is to move all users of this driver to
261 * driver model.
262 */
Marek Vasut03c6f172016-05-25 02:13:16 +0200263 baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
264 CONFIG_BAUDRATE);
Simon Glass6e780c72015-06-23 15:39:06 -0600265 serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER);
266 serial_dout(&com_port->mcr, UART_MCRVAL);
Heiko Schocher17fa0322017-01-18 08:05:49 +0100267 serial_dout(&com_port->fcr, UART_FCR_DEFVAL);
Simon Glass21d00432015-01-26 18:27:09 -0700268
Simon Glass6e780c72015-06-23 15:39:06 -0600269 serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
270 serial_dout(&com_port->dll, baud_divisor & 0xff);
271 serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff);
272 serial_dout(&com_port->lcr, UART_LCRVAL);
Simon Glass21d00432015-01-26 18:27:09 -0700273}
274
275static inline void _debug_uart_putc(int ch)
276{
277 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
278
Simon Goldschmidt1a679692018-12-03 21:55:33 +0100279 while (!(serial_din(&com_port->lsr) & UART_LSR_THRE))
280 ;
Simon Glass6e780c72015-06-23 15:39:06 -0600281 serial_dout(&com_port->thr, ch);
Simon Glass21d00432015-01-26 18:27:09 -0700282}
283
284DEBUG_UART_FUNCS
285
286#endif
287
Simon Glass12e431b2014-09-04 16:27:34 -0600288#ifdef CONFIG_DM_SERIAL
289static int ns16550_serial_putc(struct udevice *dev, const char ch)
290{
291 struct NS16550 *const com_port = dev_get_priv(dev);
292
293 if (!(serial_in(&com_port->lsr) & UART_LSR_THRE))
294 return -EAGAIN;
295 serial_out(ch, &com_port->thr);
296
297 /*
298 * Call watchdog_reset() upon newline. This is done here in putc
299 * since the environment code uses a single puts() to print the complete
300 * environment upon "printenv". So we can't put this watchdog call
301 * in puts().
302 */
303 if (ch == '\n')
304 WATCHDOG_RESET();
305
306 return 0;
307}
308
309static int ns16550_serial_pending(struct udevice *dev, bool input)
310{
311 struct NS16550 *const com_port = dev_get_priv(dev);
312
313 if (input)
Mario Six4dbf9be2018-01-15 11:09:49 +0100314 return (serial_in(&com_port->lsr) & UART_LSR_DR) ? 1 : 0;
Simon Glass12e431b2014-09-04 16:27:34 -0600315 else
Mario Six4dbf9be2018-01-15 11:09:49 +0100316 return (serial_in(&com_port->lsr) & UART_LSR_THRE) ? 0 : 1;
Simon Glass12e431b2014-09-04 16:27:34 -0600317}
318
319static int ns16550_serial_getc(struct udevice *dev)
320{
Stefan Roese7fded0c2017-08-16 17:37:15 +0200321 struct NS16550 *const com_port = dev_get_priv(dev);
322
323 if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
Simon Glass12e431b2014-09-04 16:27:34 -0600324 return -EAGAIN;
325
Stefan Roese7fded0c2017-08-16 17:37:15 +0200326 return serial_in(&com_port->rbr);
Simon Glass12e431b2014-09-04 16:27:34 -0600327}
328
329static int ns16550_serial_setbrg(struct udevice *dev, int baudrate)
330{
331 struct NS16550 *const com_port = dev_get_priv(dev);
332 struct ns16550_platdata *plat = com_port->plat;
333 int clock_divisor;
334
335 clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate);
336
337 NS16550_setbrg(com_port, clock_divisor);
338
339 return 0;
340}
341
Simon Goldschmidt9ad3b042018-11-02 21:28:08 +0100342static int ns16550_serial_setconfig(struct udevice *dev, uint serial_config)
343{
344 struct NS16550 *const com_port = dev_get_priv(dev);
345 int lcr_val = UART_LCR_WLS_8;
346 uint parity = SERIAL_GET_PARITY(serial_config);
347 uint bits = SERIAL_GET_BITS(serial_config);
348 uint stop = SERIAL_GET_STOP(serial_config);
349
350 /*
351 * only parity config is implemented, check if other serial settings
352 * are the default one.
353 */
354 if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP)
355 return -ENOTSUPP; /* not supported in driver*/
356
357 switch (parity) {
358 case SERIAL_PAR_NONE:
359 /* no bits to add */
360 break;
361 case SERIAL_PAR_ODD:
362 lcr_val |= UART_LCR_PEN;
363 break;
364 case SERIAL_PAR_EVEN:
365 lcr_val |= UART_LCR_PEN | UART_LCR_EPS;
366 break;
367 default:
368 return -ENOTSUPP; /* not supported in driver*/
369 }
370
371 serial_out(lcr_val, &com_port->lcr);
372 return 0;
373}
374
Andy Shevchenko50bf7d02018-11-20 23:52:36 +0200375static int ns16550_serial_getinfo(struct udevice *dev,
376 struct serial_device_info *info)
377{
378 struct NS16550 *const com_port = dev_get_priv(dev);
379 struct ns16550_platdata *plat = com_port->plat;
380
381 info->type = SERIAL_CHIP_16550_COMPATIBLE;
382#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
383 info->addr_space = SERIAL_ADDRESS_SPACE_IO;
384#else
385 info->addr_space = SERIAL_ADDRESS_SPACE_MEMORY;
386#endif
387 info->addr = plat->base;
388 info->reg_width = plat->reg_width;
389 info->reg_shift = plat->reg_shift;
390 info->reg_offset = plat->reg_offset;
391 return 0;
392}
393
Simon Glass12e431b2014-09-04 16:27:34 -0600394int ns16550_serial_probe(struct udevice *dev)
395{
396 struct NS16550 *const com_port = dev_get_priv(dev);
Ley Foon Tanb051eec2018-06-14 18:45:22 +0800397 struct reset_ctl_bulk reset_bulk;
398 int ret;
399
400 ret = reset_get_bulk(dev, &reset_bulk);
401 if (!ret)
402 reset_deassert_bulk(&reset_bulk);
Simon Glass12e431b2014-09-04 16:27:34 -0600403
Simon Glass11c1a872014-10-22 21:37:05 -0600404 com_port->plat = dev_get_platdata(dev);
Simon Glass12e431b2014-09-04 16:27:34 -0600405 NS16550_init(com_port, -1);
406
407 return 0;
408}
409
Marek Vasut79fd9282016-12-01 02:06:30 +0100410#if CONFIG_IS_ENABLED(OF_CONTROL)
411enum {
412 PORT_NS16550 = 0,
Marek Vasut0b060ee2016-12-01 02:06:31 +0100413 PORT_JZ4780,
Marek Vasut79fd9282016-12-01 02:06:30 +0100414};
415#endif
416
Simon Glassb2927fb2016-07-04 11:58:23 -0600417#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass12e431b2014-09-04 16:27:34 -0600418int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
419{
Simon Glass12e431b2014-09-04 16:27:34 -0600420 struct ns16550_platdata *plat = dev->platdata;
Marek Vasut0b060ee2016-12-01 02:06:31 +0100421 const u32 port_type = dev_get_driver_data(dev);
Simon Glass12e431b2014-09-04 16:27:34 -0600422 fdt_addr_t addr;
Masahiro Yamada021abf62016-09-26 20:45:27 +0900423 struct clk clk;
424 int err;
Simon Glass12e431b2014-09-04 16:27:34 -0600425
Bin Meng3db886a2014-12-31 16:05:12 +0800426 /* try Processor Local Bus device first */
Simon Glassdb9f8f62017-06-12 06:21:56 -0600427 addr = dev_read_addr(dev);
Simon Glassfcc0a872015-11-29 13:17:54 -0700428#if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI)
Bin Meng3db886a2014-12-31 16:05:12 +0800429 if (addr == FDT_ADDR_T_NONE) {
430 /* then try pci device */
431 struct fdt_pci_addr pci_addr;
432 u32 bar;
433 int ret;
434
435 /* we prefer to use a memory-mapped register */
Simon Glasse160f7d2017-01-17 16:52:55 -0700436 ret = fdtdec_get_pci_addr(gd->fdt_blob, dev_of_offset(dev),
Bin Meng3db886a2014-12-31 16:05:12 +0800437 FDT_PCI_SPACE_MEM32, "reg",
438 &pci_addr);
439 if (ret) {
440 /* try if there is any i/o-mapped register */
441 ret = fdtdec_get_pci_addr(gd->fdt_blob,
Simon Glasse160f7d2017-01-17 16:52:55 -0700442 dev_of_offset(dev),
Bin Meng3db886a2014-12-31 16:05:12 +0800443 FDT_PCI_SPACE_IO,
444 "reg", &pci_addr);
445 if (ret)
446 return ret;
447 }
448
Simon Glassfcc0a872015-11-29 13:17:54 -0700449 ret = fdtdec_get_pci_bar32(dev, &pci_addr, &bar);
Bin Meng3db886a2014-12-31 16:05:12 +0800450 if (ret)
451 return ret;
452
453 addr = bar;
454 }
455#endif
456
Simon Glass12e431b2014-09-04 16:27:34 -0600457 if (addr == FDT_ADDR_T_NONE)
458 return -EINVAL;
459
Paul Burtondf8ec552016-05-17 07:43:26 +0100460#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glass167efe02014-10-22 21:37:04 -0600461 plat->base = addr;
Paul Burtondf8ec552016-05-17 07:43:26 +0100462#else
463 plat->base = (unsigned long)map_physmem(addr, 0, MAP_NOCACHE);
464#endif
465
Philipp Tomsich3d404792017-06-07 18:46:02 +0200466 plat->reg_offset = dev_read_u32_default(dev, "reg-offset", 0);
467 plat->reg_shift = dev_read_u32_default(dev, "reg-shift", 0);
Andy Shevchenko4e720772018-11-20 23:52:35 +0200468 plat->reg_width = dev_read_u32_default(dev, "reg-io-width", 1);
Paul Burton50fce1d2016-09-08 07:47:29 +0100469
470 err = clk_get_by_index(dev, 0, &clk);
471 if (!err) {
472 err = clk_get_rate(&clk);
473 if (!IS_ERR_VALUE(err))
474 plat->clock = err;
Alexandre Courbotab895d62016-09-30 17:37:00 +0900475 } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) {
Paul Burton50fce1d2016-09-08 07:47:29 +0100476 debug("ns16550 failed to get clock\n");
477 return err;
478 }
479
480 if (!plat->clock)
Philipp Tomsich3d404792017-06-07 18:46:02 +0200481 plat->clock = dev_read_u32_default(dev, "clock-frequency",
482 CONFIG_SYS_NS16550_CLK);
Thomas Chou8e62d322015-11-19 21:48:05 +0800483 if (!plat->clock) {
484 debug("ns16550 clock not defined\n");
485 return -EINVAL;
486 }
Simon Glass12e431b2014-09-04 16:27:34 -0600487
Heiko Schocher17fa0322017-01-18 08:05:49 +0100488 plat->fcr = UART_FCR_DEFVAL;
Marek Vasut0b060ee2016-12-01 02:06:31 +0100489 if (port_type == PORT_JZ4780)
490 plat->fcr |= UART_FCR_UME;
Marek Vasut65f83802016-12-01 02:06:29 +0100491
Simon Glass12e431b2014-09-04 16:27:34 -0600492 return 0;
493}
Simon Glass11c1a872014-10-22 21:37:05 -0600494#endif
Simon Glass12e431b2014-09-04 16:27:34 -0600495
496const struct dm_serial_ops ns16550_serial_ops = {
497 .putc = ns16550_serial_putc,
498 .pending = ns16550_serial_pending,
499 .getc = ns16550_serial_getc,
500 .setbrg = ns16550_serial_setbrg,
Andy Shevchenko50bf7d02018-11-20 23:52:36 +0200501 .setconfig = ns16550_serial_setconfig,
502 .getinfo = ns16550_serial_getinfo,
Simon Glass12e431b2014-09-04 16:27:34 -0600503};
Thomas Chou8e62d322015-11-19 21:48:05 +0800504
Alexandru Gagniuc6f8c3512017-03-27 12:54:19 -0700505#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Thomas Choucc4228f2015-12-14 20:45:09 +0800506/*
507 * Please consider existing compatible strings before adding a new
508 * one to keep this table compact. Or you may add a generic "ns16550"
509 * compatible string to your dts.
510 */
Thomas Chou8e62d322015-11-19 21:48:05 +0800511static const struct udevice_id ns16550_serial_ids[] = {
Marek Vasut79fd9282016-12-01 02:06:30 +0100512 { .compatible = "ns16550", .data = PORT_NS16550 },
513 { .compatible = "ns16550a", .data = PORT_NS16550 },
Marek Vasut0b060ee2016-12-01 02:06:31 +0100514 { .compatible = "ingenic,jz4780-uart", .data = PORT_JZ4780 },
Marek Vasut79fd9282016-12-01 02:06:30 +0100515 { .compatible = "nvidia,tegra20-uart", .data = PORT_NS16550 },
516 { .compatible = "snps,dw-apb-uart", .data = PORT_NS16550 },
Thomas Chou8e62d322015-11-19 21:48:05 +0800517 {}
518};
Alexandru Gagniuc6f8c3512017-03-27 12:54:19 -0700519#endif /* OF_CONTROL && !OF_PLATDATA */
Thomas Chou8e62d322015-11-19 21:48:05 +0800520
Simon Glassb7e29832015-12-13 21:36:59 -0700521#if CONFIG_IS_ENABLED(SERIAL_PRESENT)
Alexandru Gagniuc6f8c3512017-03-27 12:54:19 -0700522
523/* TODO(sjg@chromium.org): Integrate this into a macro like CONFIG_IS_ENABLED */
524#if !defined(CONFIG_TPL_BUILD) || defined(CONFIG_TPL_DM_SERIAL)
Thomas Chou8e62d322015-11-19 21:48:05 +0800525U_BOOT_DRIVER(ns16550_serial) = {
526 .name = "ns16550_serial",
527 .id = UCLASS_SERIAL,
Alexandru Gagniuc6f8c3512017-03-27 12:54:19 -0700528#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Thomas Chou8e62d322015-11-19 21:48:05 +0800529 .of_match = ns16550_serial_ids,
530 .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
531 .platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
532#endif
533 .priv_auto_alloc_size = sizeof(struct NS16550),
534 .probe = ns16550_serial_probe,
535 .ops = &ns16550_serial_ops,
Bin Meng46879192018-10-24 06:36:36 -0700536#if !CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassb7e5a642015-12-04 08:58:38 -0700537 .flags = DM_FLAG_PRE_RELOC,
Bin Meng46879192018-10-24 06:36:36 -0700538#endif
Thomas Chou8e62d322015-11-19 21:48:05 +0800539};
Simon Glassb7e29832015-12-13 21:36:59 -0700540#endif
Alexandru Gagniuc6f8c3512017-03-27 12:54:19 -0700541#endif /* SERIAL_PRESENT */
542
Simon Glass12e431b2014-09-04 16:27:34 -0600543#endif /* CONFIG_DM_SERIAL */