blob: 61312995fb86e6c93b259c4803c8658b48b16c4a [file] [log] [blame]
wdenke85390d2002-04-01 14:29:03 +00001/*
2 * COM1 NS16550 support
Stefan Roese88fbf932010-04-15 16:07:28 +02003 * originally from linux source (arch/powerpc/boot/ns16550.c)
Jean-Christophe PLAGNIOL-VILLARD03836942008-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 Glasse98e01e2014-09-04 16:27:32 -06007#include <common.h>
Simon Glass79a9da32014-09-04 16:27:34 -06008#include <dm.h>
9#include <errno.h>
10#include <fdtdec.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050011#include <mapmem.h>
wdenke85390d2002-04-01 14:29:03 +000012#include <ns16550.h>
Simon Glass79a9da32014-09-04 16:27:34 -060013#include <serial.h>
Ladislav Michlcc294422010-02-01 23:34:25 +010014#include <watchdog.h>
Graeme Russ14f06e62010-04-24 00:05:46 +100015#include <linux/types.h>
16#include <asm/io.h>
wdenke85390d2002-04-01 14:29:03 +000017
Simon Glass79a9da32014-09-04 16:27:34 -060018DECLARE_GLOBAL_DATA_PTR;
19
Detlev Zundel166fb542009-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 */
23#define UART_FCRVAL (UART_FCR_FIFO_EN | \
24 UART_FCR_RXSR | \
25 UART_FCR_TXSR) /* Clear & enable FIFOs */
Simon Glass79a9da32014-09-04 16:27:34 -060026
27#ifndef CONFIG_DM_SERIAL
Graeme Russ14f06e62010-04-24 00:05:46 +100028#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glassdd5497c2011-10-15 19:14:09 +000029#define serial_out(x, y) outb(x, (ulong)y)
30#define serial_in(y) inb((ulong)y)
Dave Aldridgea51bebc2011-09-01 22:47:14 +000031#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
Simon Glassdd5497c2011-10-15 19:14:09 +000032#define serial_out(x, y) out_be32(y, x)
33#define serial_in(y) in_be32(y)
Dave Aldridgea51bebc2011-09-01 22:47:14 +000034#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
Simon Glassdd5497c2011-10-15 19:14:09 +000035#define serial_out(x, y) out_le32(y, x)
36#define serial_in(y) in_le32(y)
Graeme Russ14f06e62010-04-24 00:05:46 +100037#else
Simon Glassdd5497c2011-10-15 19:14:09 +000038#define serial_out(x, y) writeb(x, y)
39#define serial_in(y) readb(y)
Graeme Russ14f06e62010-04-24 00:05:46 +100040#endif
Simon Glass79a9da32014-09-04 16:27:34 -060041#endif /* !CONFIG_DM_SERIAL */
wdenke85390d2002-04-01 14:29:03 +000042
Khoronzhuk, Ivan80902982014-07-16 00:59:25 +030043#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040044#define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0
45#define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0))
Karicheri, Muralidharancbc08882014-04-09 15:38:46 -040046#undef UART_MCRVAL
47#ifdef CONFIG_SERIAL_HW_FLOW_CONTROL
48#define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE)
49#else
50#define UART_MCRVAL (UART_MCR_RTS)
51#endif
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040052#endif
53
Prafulla Wadaskar66216372010-10-27 21:58:31 +053054#ifndef CONFIG_SYS_NS16550_IER
55#define CONFIG_SYS_NS16550_IER 0x00
56#endif /* CONFIG_SYS_NS16550_IER */
57
Simon Glass79a9da32014-09-04 16:27:34 -060058#ifdef CONFIG_DM_SERIAL
Simon Glass79a9da32014-09-04 16:27:34 -060059
Simon Glassb31fb122015-02-27 22:06:26 -070060static inline void serial_out_shift(void *addr, int shift, int value)
Simon Glass6aba4fd2015-01-26 18:27:08 -070061{
Simon Glass79a9da32014-09-04 16:27:34 -060062#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glass96e230b2014-10-10 07:49:13 -060063 outb(value, (ulong)addr);
Simon Glass79a9da32014-09-04 16:27:34 -060064#elif defined(CONFIG_SYS_NS16550_MEM32) && !defined(CONFIG_SYS_BIG_ENDIAN)
65 out_le32(addr, value);
66#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
67 out_be32(addr, value);
68#elif defined(CONFIG_SYS_BIG_ENDIAN)
Simon Glass6aba4fd2015-01-26 18:27:08 -070069 writeb(value, addr + (1 << shift) - 1);
Simon Glass79a9da32014-09-04 16:27:34 -060070#else
71 writeb(value, addr);
72#endif
73}
74
Simon Glassb31fb122015-02-27 22:06:26 -070075static inline int serial_in_shift(void *addr, int shift)
Simon Glass79a9da32014-09-04 16:27:34 -060076{
Simon Glass79a9da32014-09-04 16:27:34 -060077#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glass96e230b2014-10-10 07:49:13 -060078 return inb((ulong)addr);
Simon Glass79a9da32014-09-04 16:27:34 -060079#elif defined(CONFIG_SYS_NS16550_MEM32) && !defined(CONFIG_SYS_BIG_ENDIAN)
80 return in_le32(addr);
81#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
82 return in_be32(addr);
83#elif defined(CONFIG_SYS_BIG_ENDIAN)
Axel Linb5c372d2015-02-28 15:55:36 +080084 return readb(addr + (1 << shift) - 1);
Simon Glass79a9da32014-09-04 16:27:34 -060085#else
86 return readb(addr);
87#endif
88}
89
Simon Glass6aba4fd2015-01-26 18:27:08 -070090static void ns16550_writeb(NS16550_t port, int offset, int value)
91{
92 struct ns16550_platdata *plat = port->plat;
93 unsigned char *addr;
94
95 offset *= 1 << plat->reg_shift;
96 addr = map_sysmem(plat->base, 0) + offset;
97 /*
98 * As far as we know it doesn't make sense to support selection of
99 * these options at run-time, so use the existing CONFIG options.
100 */
101 serial_out_shift(addr, plat->reg_shift, value);
102}
103
104static int ns16550_readb(NS16550_t port, int offset)
105{
106 struct ns16550_platdata *plat = port->plat;
107 unsigned char *addr;
108
109 offset *= 1 << plat->reg_shift;
110 addr = map_sysmem(plat->base, 0) + offset;
111
112 return serial_in_shift(addr, plat->reg_shift);
113}
114
Simon Glass79a9da32014-09-04 16:27:34 -0600115/* We can clean these up once everything is moved to driver model */
116#define serial_out(value, addr) \
Simon Glassb31fb122015-02-27 22:06:26 -0700117 ns16550_writeb(com_port, \
118 (unsigned char *)addr - (unsigned char *)com_port, value)
Simon Glass79a9da32014-09-04 16:27:34 -0600119#define serial_in(addr) \
Simon Glassb31fb122015-02-27 22:06:26 -0700120 ns16550_readb(com_port, \
121 (unsigned char *)addr - (unsigned char *)com_port)
Simon Glass79a9da32014-09-04 16:27:34 -0600122#endif
123
Simon Glass27afb522015-01-26 18:27:09 -0700124static inline int calc_divisor(NS16550_t port, int clock, int baudrate)
Simon Glasse98e01e2014-09-04 16:27:32 -0600125{
126 const unsigned int mode_x_div = 16;
127
Simon Glass27afb522015-01-26 18:27:09 -0700128 return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
129}
130
131int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
132{
Simon Glasse98e01e2014-09-04 16:27:32 -0600133#ifdef CONFIG_OMAP1510
134 /* If can't cleanly clock 115200 set div to 1 */
135 if ((clock == 12000000) && (baudrate == 115200)) {
136 port->osc_12m_sel = OSC_12M_SEL; /* enable 6.5 * divisor */
137 return 1; /* return 1 for base divisor */
138 }
139 port->osc_12m_sel = 0; /* clear if previsouly set */
140#endif
141
Simon Glass27afb522015-01-26 18:27:09 -0700142 return calc_divisor(port, clock, baudrate);
Simon Glasse98e01e2014-09-04 16:27:32 -0600143}
144
Simon Glassc31ebfe2014-09-04 16:27:33 -0600145static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
146{
147 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
148 serial_out(baud_divisor & 0xff, &com_port->dll);
149 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
150 serial_out(UART_LCRVAL, &com_port->lcr);
151}
152
Simon Glassdd5497c2011-10-15 19:14:09 +0000153void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000154{
Gregoire Gentil6b05d0a2014-11-10 11:04:10 -0800155#if (defined(CONFIG_SPL_BUILD) && \
156 (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
Manfred Huberf9b8ae32013-03-29 02:52:36 +0000157 /*
Gregoire Gentil6b05d0a2014-11-10 11:04:10 -0800158 * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode
159 * before SPL starts only THRE bit is set. We have to empty the
160 * transmitter before initialization starts.
Manfred Huberf9b8ae32013-03-29 02:52:36 +0000161 */
162 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
163 == UART_LSR_THRE) {
Simon Glass79a9da32014-09-04 16:27:34 -0600164 if (baud_divisor != -1)
165 NS16550_setbrg(com_port, baud_divisor);
Manfred Huberf9b8ae32013-03-29 02:52:36 +0000166 serial_out(0, &com_port->mdr1);
167 }
168#endif
169
Scott Wood6c6f0612012-09-18 18:19:05 -0500170 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
171 ;
172
Prafulla Wadaskar66216372010-10-27 21:58:31 +0530173 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Tom Rinifc695e32013-12-20 11:19:33 -0500174#if defined(CONFIG_OMAP) || defined(CONFIG_AM33XX) || \
175 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Graeme Russ14f06e62010-04-24 00:05:46 +1000176 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk21136db2003-07-16 21:53:01 +0000177#endif
Simon Glassc31ebfe2014-09-04 16:27:33 -0600178 NS16550_setbrg(com_port, 0);
Graeme Russ14f06e62010-04-24 00:05:46 +1000179 serial_out(UART_MCRVAL, &com_port->mcr);
180 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glass79a9da32014-09-04 16:27:34 -0600181 if (baud_divisor != -1)
182 NS16550_setbrg(com_port, baud_divisor);
Masahiro Yamada641e3ce2014-07-30 19:11:41 +0900183#if defined(CONFIG_OMAP) || \
Matt Porter7967b1a2013-03-15 10:07:09 +0000184 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
TENART Antoinea6be77c2013-07-02 12:05:58 +0200185 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Chandan Nath7d744102011-10-14 02:58:26 +0000186
Simon Glassdd5497c2011-10-15 19:14:09 +0000187 /* /16 is proper to hit 115200 with 48MHz */
188 serial_out(0, &com_port->mdr1);
Mike Frysingerd0e97862009-02-11 20:26:52 -0500189#endif /* CONFIG_OMAP */
Khoronzhuk, Ivan80902982014-07-16 00:59:25 +0300190#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400191 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
192#endif
wdenke85390d2002-04-01 14:29:03 +0000193}
194
Ron Madriddfa028a2009-02-18 14:30:44 -0800195#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +0000196void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000197{
Prafulla Wadaskar66216372010-10-27 21:58:31 +0530198 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Simon Glassc31ebfe2014-09-04 16:27:33 -0600199 NS16550_setbrg(com_port, 0);
Graeme Russ14f06e62010-04-24 00:05:46 +1000200 serial_out(UART_MCRVAL, &com_port->mcr);
201 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glassc31ebfe2014-09-04 16:27:33 -0600202 NS16550_setbrg(com_port, baud_divisor);
wdenke85390d2002-04-01 14:29:03 +0000203}
Ron Madriddfa028a2009-02-18 14:30:44 -0800204#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000205
Simon Glassdd5497c2011-10-15 19:14:09 +0000206void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000207{
Simon Glassdd5497c2011-10-15 19:14:09 +0000208 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
209 ;
Graeme Russ14f06e62010-04-24 00:05:46 +1000210 serial_out(c, &com_port->thr);
Stefan Roese57b99882010-10-12 09:39:45 +0200211
212 /*
213 * Call watchdog_reset() upon newline. This is done here in putc
214 * since the environment code uses a single puts() to print the complete
215 * environment upon "printenv". So we can't put this watchdog call
216 * in puts().
217 */
218 if (c == '\n')
219 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000220}
221
Ron Madriddfa028a2009-02-18 14:30:44 -0800222#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +0000223char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000224{
Graeme Russ14f06e62010-04-24 00:05:46 +1000225 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasut9e1fca92012-09-15 10:25:19 +0200226#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk29e7f5a2004-03-12 00:14:09 +0000227 extern void usbtty_poll(void);
228 usbtty_poll();
229#endif
Ladislav Michlcc294422010-02-01 23:34:25 +0100230 WATCHDOG_RESET();
wdenk29e7f5a2004-03-12 00:14:09 +0000231 }
Graeme Russ14f06e62010-04-24 00:05:46 +1000232 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000233}
234
Simon Glassdd5497c2011-10-15 19:14:09 +0000235int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000236{
Simon Glassdd5497c2011-10-15 19:14:09 +0000237 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000238}
239
Ron Madriddfa028a2009-02-18 14:30:44 -0800240#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
Simon Glass79a9da32014-09-04 16:27:34 -0600241
Simon Glass27afb522015-01-26 18:27:09 -0700242#ifdef CONFIG_DEBUG_UART_NS16550
243
244#include <debug_uart.h>
245
246void debug_uart_init(void)
247{
248 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
249 int baud_divisor;
250
251 /*
252 * We copy the code from above because it is already horribly messy.
253 * Trying to refactor to nicely remove the duplication doesn't seem
254 * feasible. The better fix is to move all users of this driver to
255 * driver model.
256 */
257 baud_divisor = calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
258 CONFIG_BAUDRATE);
Simon Glass54111292015-02-27 22:06:25 -0700259 baud_divisor = 13;
260 serial_out_shift(&com_port->ier, CONFIG_DEBUG_UART_SHIFT,
261 CONFIG_SYS_NS16550_IER);
262 serial_out_shift(&com_port->mcr, CONFIG_DEBUG_UART_SHIFT, UART_MCRVAL);
263 serial_out_shift(&com_port->fcr, CONFIG_DEBUG_UART_SHIFT, UART_FCRVAL);
Simon Glass27afb522015-01-26 18:27:09 -0700264
Simon Glass54111292015-02-27 22:06:25 -0700265 serial_out_shift(&com_port->lcr, CONFIG_DEBUG_UART_SHIFT,
266 UART_LCR_BKSE | UART_LCRVAL);
267 serial_out_shift(&com_port->dll, CONFIG_DEBUG_UART_SHIFT,
268 baud_divisor & 0xff);
269 serial_out_shift(&com_port->dlm, CONFIG_DEBUG_UART_SHIFT,
270 (baud_divisor >> 8) & 0xff);
271 serial_out_shift(&com_port->lcr, CONFIG_DEBUG_UART_SHIFT,
272 UART_LCRVAL);
Simon Glass27afb522015-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
279 while (!(serial_in_shift(&com_port->lsr, 0) & UART_LSR_THRE))
280 ;
Simon Glass54111292015-02-27 22:06:25 -0700281 serial_out_shift(&com_port->thr, CONFIG_DEBUG_UART_SHIFT, ch);
Simon Glass27afb522015-01-26 18:27:09 -0700282}
283
284DEBUG_UART_FUNCS
285
286#endif
287
Simon Glass79a9da32014-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)
314 return serial_in(&com_port->lsr) & UART_LSR_DR ? 1 : 0;
315 else
316 return serial_in(&com_port->lsr) & UART_LSR_THRE ? 0 : 1;
317}
318
319static int ns16550_serial_getc(struct udevice *dev)
320{
321 struct NS16550 *const com_port = dev_get_priv(dev);
322
Simon Glassddb958c2014-10-22 21:37:03 -0600323 if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
Simon Glass79a9da32014-09-04 16:27:34 -0600324 return -EAGAIN;
325
326 return serial_in(&com_port->rbr);
327}
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
342int ns16550_serial_probe(struct udevice *dev)
343{
344 struct NS16550 *const com_port = dev_get_priv(dev);
345
Simon Glass3bf04f32014-10-22 21:37:05 -0600346 com_port->plat = dev_get_platdata(dev);
Simon Glass79a9da32014-09-04 16:27:34 -0600347 NS16550_init(com_port, -1);
348
349 return 0;
350}
351
Simon Glass3bf04f32014-10-22 21:37:05 -0600352#ifdef CONFIG_OF_CONTROL
Simon Glass79a9da32014-09-04 16:27:34 -0600353int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
354{
Simon Glass79a9da32014-09-04 16:27:34 -0600355 struct ns16550_platdata *plat = dev->platdata;
356 fdt_addr_t addr;
357
Bin Meng0203c1c2014-12-31 16:05:12 +0800358 /* try Processor Local Bus device first */
Simon Glass79a9da32014-09-04 16:27:34 -0600359 addr = fdtdec_get_addr(gd->fdt_blob, dev->of_offset, "reg");
Bin Meng0203c1c2014-12-31 16:05:12 +0800360#ifdef CONFIG_PCI
361 if (addr == FDT_ADDR_T_NONE) {
362 /* then try pci device */
363 struct fdt_pci_addr pci_addr;
364 u32 bar;
365 int ret;
366
367 /* we prefer to use a memory-mapped register */
368 ret = fdtdec_get_pci_addr(gd->fdt_blob, dev->of_offset,
369 FDT_PCI_SPACE_MEM32, "reg",
370 &pci_addr);
371 if (ret) {
372 /* try if there is any i/o-mapped register */
373 ret = fdtdec_get_pci_addr(gd->fdt_blob,
374 dev->of_offset,
375 FDT_PCI_SPACE_IO,
376 "reg", &pci_addr);
377 if (ret)
378 return ret;
379 }
380
381 ret = fdtdec_get_pci_bar32(gd->fdt_blob, dev->of_offset,
382 &pci_addr, &bar);
383 if (ret)
384 return ret;
385
386 addr = bar;
387 }
388#endif
389
Simon Glass79a9da32014-09-04 16:27:34 -0600390 if (addr == FDT_ADDR_T_NONE)
391 return -EINVAL;
392
Simon Glass25463942014-10-22 21:37:04 -0600393 plat->base = addr;
Simon Glass79a9da32014-09-04 16:27:34 -0600394 plat->reg_shift = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
395 "reg-shift", 1);
Simon Glass79a9da32014-09-04 16:27:34 -0600396
397 return 0;
398}
Simon Glass3bf04f32014-10-22 21:37:05 -0600399#endif
Simon Glass79a9da32014-09-04 16:27:34 -0600400
401const struct dm_serial_ops ns16550_serial_ops = {
402 .putc = ns16550_serial_putc,
403 .pending = ns16550_serial_pending,
404 .getc = ns16550_serial_getc,
405 .setbrg = ns16550_serial_setbrg,
406};
407#endif /* CONFIG_DM_SERIAL */