blob: 6e9b946bf7b9058a67bb41cf127cc13ebfdf2565 [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>
11#include <fdtdec.h>
wdenke85390d2002-04-01 14:29:03 +000012#include <ns16550.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 */
23#define UART_FCRVAL (UART_FCR_FIFO_EN | \
24 UART_FCR_RXSR | \
25 UART_FCR_TXSR) /* Clear & enable FIFOs */
Simon Glass12e431b2014-09-04 16:27:34 -060026
27#ifndef CONFIG_DM_SERIAL
Graeme Russ167cdad2010-04-24 00:05:46 +100028#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glassf8df9d02011-10-15 19:14:09 +000029#define serial_out(x, y) outb(x, (ulong)y)
30#define serial_in(y) inb((ulong)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_be32(y, x)
33#define serial_in(y) in_be32(y)
Dave Aldridge79df1202011-09-01 22:47:14 +000034#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
Simon Glassf8df9d02011-10-15 19:14:09 +000035#define serial_out(x, y) out_le32(y, x)
36#define serial_in(y) in_le32(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100037#else
Simon Glassf8df9d02011-10-15 19:14:09 +000038#define serial_out(x, y) writeb(x, y)
39#define serial_in(y) readb(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100040#endif
Simon Glass12e431b2014-09-04 16:27:34 -060041#endif /* !CONFIG_DM_SERIAL */
wdenke85390d2002-04-01 14:29:03 +000042
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +030043#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-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, Muralidharand57dee52014-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 Andrianovef509b92014-04-04 13:16:53 -040052#endif
53
Prafulla Wadaskara160ea02010-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 Glass363e6da2015-02-27 22:06:26 -070058static inline void serial_out_shift(void *addr, int shift, int value)
Simon Glass76571672015-01-26 18:27:08 -070059{
60#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
61 outb(value, (ulong)addr);
62#elif defined(CONFIG_SYS_NS16550_MEM32) && !defined(CONFIG_SYS_BIG_ENDIAN)
63 out_le32(addr, value);
64#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
65 out_be32(addr, value);
Simon Glass90914002015-05-12 14:55:02 -060066#elif defined(CONFIG_SYS_NS16550_MEM32)
67 writel(value, addr);
Simon Glass76571672015-01-26 18:27:08 -070068#elif defined(CONFIG_SYS_BIG_ENDIAN)
69 writeb(value, addr + (1 << shift) - 1);
70#else
71 writeb(value, addr);
72#endif
73}
74
Simon Glass363e6da2015-02-27 22:06:26 -070075static inline int serial_in_shift(void *addr, int shift)
Simon Glass76571672015-01-26 18:27:08 -070076{
77#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
78 return inb((ulong)addr);
79#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);
Simon Glass90914002015-05-12 14:55:02 -060083#elif defined(CONFIG_SYS_NS16550_MEM32)
84 return readl(addr);
Simon Glass76571672015-01-26 18:27:08 -070085#elif defined(CONFIG_SYS_BIG_ENDIAN)
Axel Lin20379c12015-02-28 15:55:36 +080086 return readb(addr + (1 << shift) - 1);
Simon Glass76571672015-01-26 18:27:08 -070087#else
88 return readb(addr);
89#endif
90}
91
Marek Vasutfa4ce722016-05-25 02:13:03 +020092#ifdef CONFIG_DM_SERIAL
93
94#ifndef CONFIG_SYS_NS16550_CLK
95#define CONFIG_SYS_NS16550_CLK 0
96#endif
97
Simon Glass12e431b2014-09-04 16:27:34 -060098static void ns16550_writeb(NS16550_t port, int offset, int value)
99{
100 struct ns16550_platdata *plat = port->plat;
101 unsigned char *addr;
102
103 offset *= 1 << plat->reg_shift;
Paul Burtondf8ec552016-05-17 07:43:26 +0100104 addr = (unsigned char *)plat->base + offset;
105
Simon Glass12e431b2014-09-04 16:27:34 -0600106 /*
107 * As far as we know it doesn't make sense to support selection of
108 * these options at run-time, so use the existing CONFIG options.
109 */
Michal Simek59b35dd2016-02-16 16:17:49 +0100110 serial_out_shift(addr + plat->reg_offset, plat->reg_shift, value);
Simon Glass12e431b2014-09-04 16:27:34 -0600111}
112
113static int ns16550_readb(NS16550_t port, int offset)
114{
115 struct ns16550_platdata *plat = port->plat;
116 unsigned char *addr;
117
118 offset *= 1 << plat->reg_shift;
Paul Burtondf8ec552016-05-17 07:43:26 +0100119 addr = (unsigned char *)plat->base + offset;
Simon Glass76571672015-01-26 18:27:08 -0700120
Michal Simek59b35dd2016-02-16 16:17:49 +0100121 return serial_in_shift(addr + plat->reg_offset, plat->reg_shift);
Simon Glass12e431b2014-09-04 16:27:34 -0600122}
123
124/* We can clean these up once everything is moved to driver model */
125#define serial_out(value, addr) \
Simon Glass363e6da2015-02-27 22:06:26 -0700126 ns16550_writeb(com_port, \
127 (unsigned char *)addr - (unsigned char *)com_port, value)
Simon Glass12e431b2014-09-04 16:27:34 -0600128#define serial_in(addr) \
Simon Glass363e6da2015-02-27 22:06:26 -0700129 ns16550_readb(com_port, \
130 (unsigned char *)addr - (unsigned char *)com_port)
Simon Glass12e431b2014-09-04 16:27:34 -0600131#endif
132
Marek Vasut03c6f172016-05-25 02:13:16 +0200133int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
Simon Glassfa54eb12014-09-04 16:27:32 -0600134{
135 const unsigned int mode_x_div = 16;
136
Simon Glass21d00432015-01-26 18:27:09 -0700137 return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
138}
139
Simon Glass8bbe33c2014-09-04 16:27:33 -0600140static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
141{
142 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
143 serial_out(baud_divisor & 0xff, &com_port->dll);
144 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
145 serial_out(UART_LCRVAL, &com_port->lcr);
146}
147
Simon Glassf8df9d02011-10-15 19:14:09 +0000148void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000149{
Gregoire Gentil956a8ba2014-11-10 11:04:10 -0800150#if (defined(CONFIG_SPL_BUILD) && \
151 (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000152 /*
Gregoire Gentil956a8ba2014-11-10 11:04:10 -0800153 * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode
154 * before SPL starts only THRE bit is set. We have to empty the
155 * transmitter before initialization starts.
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000156 */
157 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
158 == UART_LSR_THRE) {
Simon Glass12e431b2014-09-04 16:27:34 -0600159 if (baud_divisor != -1)
160 NS16550_setbrg(com_port, baud_divisor);
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000161 serial_out(0, &com_port->mdr1);
162 }
163#endif
164
Scott Woodcb55b332012-09-18 18:19:05 -0500165 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
166 ;
167
Prafulla Wadaskara160ea02010-10-27 21:58:31 +0530168 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Tom Rini456ccfd2013-12-20 11:19:33 -0500169#if defined(CONFIG_OMAP) || defined(CONFIG_AM33XX) || \
170 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Graeme Russ167cdad2010-04-24 00:05:46 +1000171 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk945af8d2003-07-16 21:53:01 +0000172#endif
Graeme Russ167cdad2010-04-24 00:05:46 +1000173 serial_out(UART_MCRVAL, &com_port->mcr);
174 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glass12e431b2014-09-04 16:27:34 -0600175 if (baud_divisor != -1)
176 NS16550_setbrg(com_port, baud_divisor);
Masahiro Yamada8ac22a62014-07-30 19:11:41 +0900177#if defined(CONFIG_OMAP) || \
Matt Porter6213a682013-03-15 10:07:09 +0000178 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
TENART Antoine9ed6e412013-07-02 12:05:58 +0200179 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Chandan Nath5289e832011-10-14 02:58:26 +0000180
Simon Glassf8df9d02011-10-15 19:14:09 +0000181 /* /16 is proper to hit 115200 with 48MHz */
182 serial_out(0, &com_port->mdr1);
Mike Frysingerb4746d82009-02-11 20:26:52 -0500183#endif /* CONFIG_OMAP */
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +0300184#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-04-04 13:16:53 -0400185 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
186#endif
wdenke85390d2002-04-01 14:29:03 +0000187}
188
Ron Madridf5675aa2009-02-18 14:30:44 -0800189#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000190void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000191{
Prafulla Wadaskara160ea02010-10-27 21:58:31 +0530192 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600193 NS16550_setbrg(com_port, 0);
Graeme Russ167cdad2010-04-24 00:05:46 +1000194 serial_out(UART_MCRVAL, &com_port->mcr);
195 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600196 NS16550_setbrg(com_port, baud_divisor);
wdenke85390d2002-04-01 14:29:03 +0000197}
Ron Madridf5675aa2009-02-18 14:30:44 -0800198#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000199
Simon Glassf8df9d02011-10-15 19:14:09 +0000200void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000201{
Simon Glassf8df9d02011-10-15 19:14:09 +0000202 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
203 ;
Graeme Russ167cdad2010-04-24 00:05:46 +1000204 serial_out(c, &com_port->thr);
Stefan Roese1a2d9b32010-10-12 09:39:45 +0200205
206 /*
207 * Call watchdog_reset() upon newline. This is done here in putc
208 * since the environment code uses a single puts() to print the complete
209 * environment upon "printenv". So we can't put this watchdog call
210 * in puts().
211 */
212 if (c == '\n')
213 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000214}
215
Ron Madridf5675aa2009-02-18 14:30:44 -0800216#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000217char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000218{
Graeme Russ167cdad2010-04-24 00:05:46 +1000219 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasutf2041382012-09-15 10:25:19 +0200220#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk232c1502004-03-12 00:14:09 +0000221 extern void usbtty_poll(void);
222 usbtty_poll();
223#endif
Ladislav Michla1b322a2010-02-01 23:34:25 +0100224 WATCHDOG_RESET();
wdenk232c1502004-03-12 00:14:09 +0000225 }
Graeme Russ167cdad2010-04-24 00:05:46 +1000226 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000227}
228
Simon Glassf8df9d02011-10-15 19:14:09 +0000229int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000230{
Simon Glassf8df9d02011-10-15 19:14:09 +0000231 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000232}
233
Ron Madridf5675aa2009-02-18 14:30:44 -0800234#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
Simon Glass12e431b2014-09-04 16:27:34 -0600235
Simon Glass21d00432015-01-26 18:27:09 -0700236#ifdef CONFIG_DEBUG_UART_NS16550
237
238#include <debug_uart.h>
239
Simon Glass6e780c72015-06-23 15:39:06 -0600240#define serial_dout(reg, value) \
241 serial_out_shift((char *)com_port + \
242 ((char *)reg - (char *)com_port) * \
243 (1 << CONFIG_DEBUG_UART_SHIFT), \
244 CONFIG_DEBUG_UART_SHIFT, value)
245#define serial_din(reg) \
246 serial_in_shift((char *)com_port + \
247 ((char *)reg - (char *)com_port) * \
248 (1 << CONFIG_DEBUG_UART_SHIFT), \
249 CONFIG_DEBUG_UART_SHIFT)
250
Simon Glass97b05972015-10-18 19:51:23 -0600251static inline void _debug_uart_init(void)
Simon Glass21d00432015-01-26 18:27:09 -0700252{
253 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
254 int baud_divisor;
255
256 /*
257 * We copy the code from above because it is already horribly messy.
258 * Trying to refactor to nicely remove the duplication doesn't seem
259 * feasible. The better fix is to move all users of this driver to
260 * driver model.
261 */
Marek Vasut03c6f172016-05-25 02:13:16 +0200262 baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
263 CONFIG_BAUDRATE);
Simon Glass6e780c72015-06-23 15:39:06 -0600264 serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER);
265 serial_dout(&com_port->mcr, UART_MCRVAL);
266 serial_dout(&com_port->fcr, UART_FCRVAL);
Simon Glass21d00432015-01-26 18:27:09 -0700267
Simon Glass6e780c72015-06-23 15:39:06 -0600268 serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
269 serial_dout(&com_port->dll, baud_divisor & 0xff);
270 serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff);
271 serial_dout(&com_port->lcr, UART_LCRVAL);
Simon Glass21d00432015-01-26 18:27:09 -0700272}
273
274static inline void _debug_uart_putc(int ch)
275{
276 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
277
Simon Glass6e780c72015-06-23 15:39:06 -0600278 while (!(serial_din(&com_port->lsr) & UART_LSR_THRE))
Simon Glass21d00432015-01-26 18:27:09 -0700279 ;
Simon Glass6e780c72015-06-23 15:39:06 -0600280 serial_dout(&com_port->thr, ch);
Simon Glass21d00432015-01-26 18:27:09 -0700281}
282
283DEBUG_UART_FUNCS
284
285#endif
286
Simon Glass12e431b2014-09-04 16:27:34 -0600287#ifdef CONFIG_DM_SERIAL
288static int ns16550_serial_putc(struct udevice *dev, const char ch)
289{
290 struct NS16550 *const com_port = dev_get_priv(dev);
291
292 if (!(serial_in(&com_port->lsr) & UART_LSR_THRE))
293 return -EAGAIN;
294 serial_out(ch, &com_port->thr);
295
296 /*
297 * Call watchdog_reset() upon newline. This is done here in putc
298 * since the environment code uses a single puts() to print the complete
299 * environment upon "printenv". So we can't put this watchdog call
300 * in puts().
301 */
302 if (ch == '\n')
303 WATCHDOG_RESET();
304
305 return 0;
306}
307
308static int ns16550_serial_pending(struct udevice *dev, bool input)
309{
310 struct NS16550 *const com_port = dev_get_priv(dev);
311
312 if (input)
313 return serial_in(&com_port->lsr) & UART_LSR_DR ? 1 : 0;
314 else
315 return serial_in(&com_port->lsr) & UART_LSR_THRE ? 0 : 1;
316}
317
318static int ns16550_serial_getc(struct udevice *dev)
319{
320 struct NS16550 *const com_port = dev_get_priv(dev);
321
Simon Glassaea2be22014-10-22 21:37:03 -0600322 if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
Simon Glass12e431b2014-09-04 16:27:34 -0600323 return -EAGAIN;
324
325 return serial_in(&com_port->rbr);
326}
327
328static int ns16550_serial_setbrg(struct udevice *dev, int baudrate)
329{
330 struct NS16550 *const com_port = dev_get_priv(dev);
331 struct ns16550_platdata *plat = com_port->plat;
332 int clock_divisor;
333
334 clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate);
335
336 NS16550_setbrg(com_port, clock_divisor);
337
338 return 0;
339}
340
341int ns16550_serial_probe(struct udevice *dev)
342{
343 struct NS16550 *const com_port = dev_get_priv(dev);
344
Simon Glass11c1a872014-10-22 21:37:05 -0600345 com_port->plat = dev_get_platdata(dev);
Simon Glass12e431b2014-09-04 16:27:34 -0600346 NS16550_init(com_port, -1);
347
348 return 0;
349}
350
Simon Glassb2927fb2016-07-04 11:58:23 -0600351#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass12e431b2014-09-04 16:27:34 -0600352int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
353{
Simon Glass12e431b2014-09-04 16:27:34 -0600354 struct ns16550_platdata *plat = dev->platdata;
355 fdt_addr_t addr;
Masahiro Yamada021abf62016-09-26 20:45:27 +0900356 struct clk clk;
357 int err;
Simon Glass12e431b2014-09-04 16:27:34 -0600358
Bin Meng3db886a2014-12-31 16:05:12 +0800359 /* try Processor Local Bus device first */
Simon Glass4e9838c2015-08-11 08:33:29 -0600360 addr = dev_get_addr(dev);
Simon Glassfcc0a872015-11-29 13:17:54 -0700361#if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI)
Bin Meng3db886a2014-12-31 16:05:12 +0800362 if (addr == FDT_ADDR_T_NONE) {
363 /* then try pci device */
364 struct fdt_pci_addr pci_addr;
365 u32 bar;
366 int ret;
367
368 /* we prefer to use a memory-mapped register */
369 ret = fdtdec_get_pci_addr(gd->fdt_blob, dev->of_offset,
370 FDT_PCI_SPACE_MEM32, "reg",
371 &pci_addr);
372 if (ret) {
373 /* try if there is any i/o-mapped register */
374 ret = fdtdec_get_pci_addr(gd->fdt_blob,
375 dev->of_offset,
376 FDT_PCI_SPACE_IO,
377 "reg", &pci_addr);
378 if (ret)
379 return ret;
380 }
381
Simon Glassfcc0a872015-11-29 13:17:54 -0700382 ret = fdtdec_get_pci_bar32(dev, &pci_addr, &bar);
Bin Meng3db886a2014-12-31 16:05:12 +0800383 if (ret)
384 return ret;
385
386 addr = bar;
387 }
388#endif
389
Simon Glass12e431b2014-09-04 16:27:34 -0600390 if (addr == FDT_ADDR_T_NONE)
391 return -EINVAL;
392
Paul Burtondf8ec552016-05-17 07:43:26 +0100393#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glass167efe02014-10-22 21:37:04 -0600394 plat->base = addr;
Paul Burtondf8ec552016-05-17 07:43:26 +0100395#else
396 plat->base = (unsigned long)map_physmem(addr, 0, MAP_NOCACHE);
397#endif
398
Michal Simek59b35dd2016-02-16 16:17:49 +0100399 plat->reg_offset = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
400 "reg-offset", 0);
Simon Glass12e431b2014-09-04 16:27:34 -0600401 plat->reg_shift = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
Thomas Chou80e06142015-11-29 14:01:03 +0800402 "reg-shift", 0);
Paul Burton50fce1d2016-09-08 07:47:29 +0100403
404 err = clk_get_by_index(dev, 0, &clk);
405 if (!err) {
406 err = clk_get_rate(&clk);
407 if (!IS_ERR_VALUE(err))
408 plat->clock = err;
Alexandre Courbotab895d62016-09-30 17:37:00 +0900409 } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) {
Paul Burton50fce1d2016-09-08 07:47:29 +0100410 debug("ns16550 failed to get clock\n");
411 return err;
412 }
413
414 if (!plat->clock)
415 plat->clock = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
416 "clock-frequency",
417 CONFIG_SYS_NS16550_CLK);
Thomas Chou8e62d322015-11-19 21:48:05 +0800418 if (!plat->clock) {
419 debug("ns16550 clock not defined\n");
420 return -EINVAL;
421 }
Simon Glass12e431b2014-09-04 16:27:34 -0600422
423 return 0;
424}
Simon Glass11c1a872014-10-22 21:37:05 -0600425#endif
Simon Glass12e431b2014-09-04 16:27:34 -0600426
427const struct dm_serial_ops ns16550_serial_ops = {
428 .putc = ns16550_serial_putc,
429 .pending = ns16550_serial_pending,
430 .getc = ns16550_serial_getc,
431 .setbrg = ns16550_serial_setbrg,
432};
Thomas Chou8e62d322015-11-19 21:48:05 +0800433
Simon Glassb2927fb2016-07-04 11:58:23 -0600434#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Thomas Chou8e62d322015-11-19 21:48:05 +0800435#if CONFIG_IS_ENABLED(OF_CONTROL)
Thomas Choucc4228f2015-12-14 20:45:09 +0800436/*
437 * Please consider existing compatible strings before adding a new
438 * one to keep this table compact. Or you may add a generic "ns16550"
439 * compatible string to your dts.
440 */
Thomas Chou8e62d322015-11-19 21:48:05 +0800441static const struct udevice_id ns16550_serial_ids[] = {
442 { .compatible = "ns16550" },
443 { .compatible = "ns16550a" },
444 { .compatible = "nvidia,tegra20-uart" },
445 { .compatible = "snps,dw-apb-uart" },
446 { .compatible = "ti,omap2-uart" },
447 { .compatible = "ti,omap3-uart" },
448 { .compatible = "ti,omap4-uart" },
449 { .compatible = "ti,am3352-uart" },
450 { .compatible = "ti,am4372-uart" },
451 { .compatible = "ti,dra742-uart" },
452 {}
453};
454#endif
455
Simon Glassb7e29832015-12-13 21:36:59 -0700456#if CONFIG_IS_ENABLED(SERIAL_PRESENT)
Thomas Chou8e62d322015-11-19 21:48:05 +0800457U_BOOT_DRIVER(ns16550_serial) = {
458 .name = "ns16550_serial",
459 .id = UCLASS_SERIAL,
460#if CONFIG_IS_ENABLED(OF_CONTROL)
461 .of_match = ns16550_serial_ids,
462 .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
463 .platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
464#endif
465 .priv_auto_alloc_size = sizeof(struct NS16550),
466 .probe = ns16550_serial_probe,
467 .ops = &ns16550_serial_ops,
Simon Glassb7e5a642015-12-04 08:58:38 -0700468 .flags = DM_FLAG_PRE_RELOC,
Thomas Chou8e62d322015-11-19 21:48:05 +0800469};
Simon Glassb7e29832015-12-13 21:36:59 -0700470#endif
Simon Glassb2927fb2016-07-04 11:58:23 -0600471#endif /* !OF_PLATDATA */
Simon Glass12e431b2014-09-04 16:27:34 -0600472#endif /* CONFIG_DM_SERIAL */