blob: c6cb3eb500cae251509f3979a688469dedd4d3c4 [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>
Simon Glass12e431b2014-09-04 16:27:34 -06008#include <dm.h>
9#include <errno.h>
10#include <fdtdec.h>
wdenke85390d2002-04-01 14:29:03 +000011#include <ns16550.h>
Simon Glass12e431b2014-09-04 16:27:34 -060012#include <serial.h>
Ladislav Michla1b322a2010-02-01 23:34:25 +010013#include <watchdog.h>
Graeme Russ167cdad2010-04-24 00:05:46 +100014#include <linux/types.h>
15#include <asm/io.h>
wdenke85390d2002-04-01 14:29:03 +000016
Simon Glass12e431b2014-09-04 16:27:34 -060017DECLARE_GLOBAL_DATA_PTR;
18
Detlev Zundel200779e2009-04-03 11:53:01 +020019#define UART_LCRVAL UART_LCR_8N1 /* 8 data, 1 stop, no parity */
20#define UART_MCRVAL (UART_MCR_DTR | \
21 UART_MCR_RTS) /* RTS/DTR */
22#define UART_FCRVAL (UART_FCR_FIFO_EN | \
23 UART_FCR_RXSR | \
24 UART_FCR_TXSR) /* Clear & enable FIFOs */
Simon Glass12e431b2014-09-04 16:27:34 -060025
26#ifndef CONFIG_DM_SERIAL
Graeme Russ167cdad2010-04-24 00:05:46 +100027#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glassf8df9d02011-10-15 19:14:09 +000028#define serial_out(x, y) outb(x, (ulong)y)
29#define serial_in(y) inb((ulong)y)
Dave Aldridge79df1202011-09-01 22:47:14 +000030#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
Simon Glassf8df9d02011-10-15 19:14:09 +000031#define serial_out(x, y) out_be32(y, x)
32#define serial_in(y) in_be32(y)
Dave Aldridge79df1202011-09-01 22:47:14 +000033#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
Simon Glassf8df9d02011-10-15 19:14:09 +000034#define serial_out(x, y) out_le32(y, x)
35#define serial_in(y) in_le32(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100036#else
Simon Glassf8df9d02011-10-15 19:14:09 +000037#define serial_out(x, y) writeb(x, y)
38#define serial_in(y) readb(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100039#endif
Simon Glass12e431b2014-09-04 16:27:34 -060040#endif /* !CONFIG_DM_SERIAL */
wdenke85390d2002-04-01 14:29:03 +000041
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +030042#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-04-04 13:16:53 -040043#define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0
44#define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0))
Karicheri, Muralidharand57dee52014-04-09 15:38:46 -040045#undef UART_MCRVAL
46#ifdef CONFIG_SERIAL_HW_FLOW_CONTROL
47#define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE)
48#else
49#define UART_MCRVAL (UART_MCR_RTS)
50#endif
Vitaly Andrianovef509b92014-04-04 13:16:53 -040051#endif
52
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053053#ifndef CONFIG_SYS_NS16550_IER
54#define CONFIG_SYS_NS16550_IER 0x00
55#endif /* CONFIG_SYS_NS16550_IER */
56
Simon Glass363e6da2015-02-27 22:06:26 -070057static inline void serial_out_shift(void *addr, int shift, int value)
Simon Glass76571672015-01-26 18:27:08 -070058{
59#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
60 outb(value, (ulong)addr);
61#elif defined(CONFIG_SYS_NS16550_MEM32) && !defined(CONFIG_SYS_BIG_ENDIAN)
62 out_le32(addr, value);
63#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
64 out_be32(addr, value);
Simon Glass90914002015-05-12 14:55:02 -060065#elif defined(CONFIG_SYS_NS16550_MEM32)
66 writel(value, addr);
Simon Glass76571672015-01-26 18:27:08 -070067#elif defined(CONFIG_SYS_BIG_ENDIAN)
68 writeb(value, addr + (1 << shift) - 1);
69#else
70 writeb(value, addr);
71#endif
72}
73
Simon Glass363e6da2015-02-27 22:06:26 -070074static inline int serial_in_shift(void *addr, int shift)
Simon Glass76571672015-01-26 18:27:08 -070075{
76#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
77 return inb((ulong)addr);
78#elif defined(CONFIG_SYS_NS16550_MEM32) && !defined(CONFIG_SYS_BIG_ENDIAN)
79 return in_le32(addr);
80#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
81 return in_be32(addr);
Simon Glass90914002015-05-12 14:55:02 -060082#elif defined(CONFIG_SYS_NS16550_MEM32)
83 return readl(addr);
Simon Glass76571672015-01-26 18:27:08 -070084#elif defined(CONFIG_SYS_BIG_ENDIAN)
Axel Lin20379c12015-02-28 15:55:36 +080085 return readb(addr + (1 << shift) - 1);
Simon Glass76571672015-01-26 18:27:08 -070086#else
87 return readb(addr);
88#endif
89}
90
Marek Vasutfa4ce722016-05-25 02:13:03 +020091#ifdef CONFIG_DM_SERIAL
92
93#ifndef CONFIG_SYS_NS16550_CLK
94#define CONFIG_SYS_NS16550_CLK 0
95#endif
96
Simon Glass12e431b2014-09-04 16:27:34 -060097static void ns16550_writeb(NS16550_t port, int offset, int value)
98{
99 struct ns16550_platdata *plat = port->plat;
100 unsigned char *addr;
101
102 offset *= 1 << plat->reg_shift;
Paul Burtondf8ec552016-05-17 07:43:26 +0100103 addr = (unsigned char *)plat->base + offset;
104
Simon Glass12e431b2014-09-04 16:27:34 -0600105 /*
106 * As far as we know it doesn't make sense to support selection of
107 * these options at run-time, so use the existing CONFIG options.
108 */
Michal Simek59b35dd2016-02-16 16:17:49 +0100109 serial_out_shift(addr + plat->reg_offset, plat->reg_shift, value);
Simon Glass12e431b2014-09-04 16:27:34 -0600110}
111
112static int ns16550_readb(NS16550_t port, int offset)
113{
114 struct ns16550_platdata *plat = port->plat;
115 unsigned char *addr;
116
117 offset *= 1 << plat->reg_shift;
Paul Burtondf8ec552016-05-17 07:43:26 +0100118 addr = (unsigned char *)plat->base + offset;
Simon Glass76571672015-01-26 18:27:08 -0700119
Michal Simek59b35dd2016-02-16 16:17:49 +0100120 return serial_in_shift(addr + plat->reg_offset, plat->reg_shift);
Simon Glass12e431b2014-09-04 16:27:34 -0600121}
122
123/* We can clean these up once everything is moved to driver model */
124#define serial_out(value, addr) \
Simon Glass363e6da2015-02-27 22:06:26 -0700125 ns16550_writeb(com_port, \
126 (unsigned char *)addr - (unsigned char *)com_port, value)
Simon Glass12e431b2014-09-04 16:27:34 -0600127#define serial_in(addr) \
Simon Glass363e6da2015-02-27 22:06:26 -0700128 ns16550_readb(com_port, \
129 (unsigned char *)addr - (unsigned char *)com_port)
Simon Glass12e431b2014-09-04 16:27:34 -0600130#endif
131
Marek Vasut03c6f172016-05-25 02:13:16 +0200132int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
Simon Glassfa54eb12014-09-04 16:27:32 -0600133{
134 const unsigned int mode_x_div = 16;
135
Simon Glass21d00432015-01-26 18:27:09 -0700136 return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
137}
138
Simon Glass8bbe33c2014-09-04 16:27:33 -0600139static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
140{
141 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
142 serial_out(baud_divisor & 0xff, &com_port->dll);
143 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
144 serial_out(UART_LCRVAL, &com_port->lcr);
145}
146
Simon Glassf8df9d02011-10-15 19:14:09 +0000147void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000148{
Gregoire Gentil956a8ba2014-11-10 11:04:10 -0800149#if (defined(CONFIG_SPL_BUILD) && \
150 (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000151 /*
Gregoire Gentil956a8ba2014-11-10 11:04:10 -0800152 * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode
153 * before SPL starts only THRE bit is set. We have to empty the
154 * transmitter before initialization starts.
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000155 */
156 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
157 == UART_LSR_THRE) {
Simon Glass12e431b2014-09-04 16:27:34 -0600158 if (baud_divisor != -1)
159 NS16550_setbrg(com_port, baud_divisor);
Manfred Huberfd2aeac2013-03-29 02:52:36 +0000160 serial_out(0, &com_port->mdr1);
161 }
162#endif
163
Scott Woodcb55b332012-09-18 18:19:05 -0500164 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
165 ;
166
Prafulla Wadaskara160ea02010-10-27 21:58:31 +0530167 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Tom Rini456ccfd2013-12-20 11:19:33 -0500168#if defined(CONFIG_OMAP) || defined(CONFIG_AM33XX) || \
169 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Graeme Russ167cdad2010-04-24 00:05:46 +1000170 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk945af8d2003-07-16 21:53:01 +0000171#endif
Graeme Russ167cdad2010-04-24 00:05:46 +1000172 serial_out(UART_MCRVAL, &com_port->mcr);
173 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glass12e431b2014-09-04 16:27:34 -0600174 if (baud_divisor != -1)
175 NS16550_setbrg(com_port, baud_divisor);
Masahiro Yamada8ac22a62014-07-30 19:11:41 +0900176#if defined(CONFIG_OMAP) || \
Matt Porter6213a682013-03-15 10:07:09 +0000177 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
TENART Antoine9ed6e412013-07-02 12:05:58 +0200178 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Chandan Nath5289e832011-10-14 02:58:26 +0000179
Simon Glassf8df9d02011-10-15 19:14:09 +0000180 /* /16 is proper to hit 115200 with 48MHz */
181 serial_out(0, &com_port->mdr1);
Mike Frysingerb4746d82009-02-11 20:26:52 -0500182#endif /* CONFIG_OMAP */
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +0300183#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-04-04 13:16:53 -0400184 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
185#endif
wdenke85390d2002-04-01 14:29:03 +0000186}
187
Ron Madridf5675aa2009-02-18 14:30:44 -0800188#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000189void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000190{
Prafulla Wadaskara160ea02010-10-27 21:58:31 +0530191 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600192 NS16550_setbrg(com_port, 0);
Graeme Russ167cdad2010-04-24 00:05:46 +1000193 serial_out(UART_MCRVAL, &com_port->mcr);
194 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600195 NS16550_setbrg(com_port, baud_divisor);
wdenke85390d2002-04-01 14:29:03 +0000196}
Ron Madridf5675aa2009-02-18 14:30:44 -0800197#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000198
Simon Glassf8df9d02011-10-15 19:14:09 +0000199void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000200{
Simon Glassf8df9d02011-10-15 19:14:09 +0000201 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
202 ;
Graeme Russ167cdad2010-04-24 00:05:46 +1000203 serial_out(c, &com_port->thr);
Stefan Roese1a2d9b32010-10-12 09:39:45 +0200204
205 /*
206 * Call watchdog_reset() upon newline. This is done here in putc
207 * since the environment code uses a single puts() to print the complete
208 * environment upon "printenv". So we can't put this watchdog call
209 * in puts().
210 */
211 if (c == '\n')
212 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000213}
214
Ron Madridf5675aa2009-02-18 14:30:44 -0800215#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000216char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000217{
Graeme Russ167cdad2010-04-24 00:05:46 +1000218 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasutf2041382012-09-15 10:25:19 +0200219#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk232c1502004-03-12 00:14:09 +0000220 extern void usbtty_poll(void);
221 usbtty_poll();
222#endif
Ladislav Michla1b322a2010-02-01 23:34:25 +0100223 WATCHDOG_RESET();
wdenk232c1502004-03-12 00:14:09 +0000224 }
Graeme Russ167cdad2010-04-24 00:05:46 +1000225 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000226}
227
Simon Glassf8df9d02011-10-15 19:14:09 +0000228int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000229{
Simon Glassf8df9d02011-10-15 19:14:09 +0000230 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000231}
232
Ron Madridf5675aa2009-02-18 14:30:44 -0800233#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
Simon Glass12e431b2014-09-04 16:27:34 -0600234
Simon Glass21d00432015-01-26 18:27:09 -0700235#ifdef CONFIG_DEBUG_UART_NS16550
236
237#include <debug_uart.h>
238
Simon Glass6e780c72015-06-23 15:39:06 -0600239#define serial_dout(reg, value) \
240 serial_out_shift((char *)com_port + \
241 ((char *)reg - (char *)com_port) * \
242 (1 << CONFIG_DEBUG_UART_SHIFT), \
243 CONFIG_DEBUG_UART_SHIFT, value)
244#define serial_din(reg) \
245 serial_in_shift((char *)com_port + \
246 ((char *)reg - (char *)com_port) * \
247 (1 << CONFIG_DEBUG_UART_SHIFT), \
248 CONFIG_DEBUG_UART_SHIFT)
249
Simon Glass97b05972015-10-18 19:51:23 -0600250static inline void _debug_uart_init(void)
Simon Glass21d00432015-01-26 18:27:09 -0700251{
252 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
253 int baud_divisor;
254
255 /*
256 * We copy the code from above because it is already horribly messy.
257 * Trying to refactor to nicely remove the duplication doesn't seem
258 * feasible. The better fix is to move all users of this driver to
259 * driver model.
260 */
Marek Vasut03c6f172016-05-25 02:13:16 +0200261 baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
262 CONFIG_BAUDRATE);
Simon Glass6e780c72015-06-23 15:39:06 -0600263 serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER);
264 serial_dout(&com_port->mcr, UART_MCRVAL);
265 serial_dout(&com_port->fcr, UART_FCRVAL);
Simon Glass21d00432015-01-26 18:27:09 -0700266
Simon Glass6e780c72015-06-23 15:39:06 -0600267 serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
268 serial_dout(&com_port->dll, baud_divisor & 0xff);
269 serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff);
270 serial_dout(&com_port->lcr, UART_LCRVAL);
Simon Glass21d00432015-01-26 18:27:09 -0700271}
272
273static inline void _debug_uart_putc(int ch)
274{
275 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
276
Simon Glass6e780c72015-06-23 15:39:06 -0600277 while (!(serial_din(&com_port->lsr) & UART_LSR_THRE))
Simon Glass21d00432015-01-26 18:27:09 -0700278 ;
Simon Glass6e780c72015-06-23 15:39:06 -0600279 serial_dout(&com_port->thr, ch);
Simon Glass21d00432015-01-26 18:27:09 -0700280}
281
282DEBUG_UART_FUNCS
283
284#endif
285
Simon Glass12e431b2014-09-04 16:27:34 -0600286#ifdef CONFIG_DM_SERIAL
287static int ns16550_serial_putc(struct udevice *dev, const char ch)
288{
289 struct NS16550 *const com_port = dev_get_priv(dev);
290
291 if (!(serial_in(&com_port->lsr) & UART_LSR_THRE))
292 return -EAGAIN;
293 serial_out(ch, &com_port->thr);
294
295 /*
296 * Call watchdog_reset() upon newline. This is done here in putc
297 * since the environment code uses a single puts() to print the complete
298 * environment upon "printenv". So we can't put this watchdog call
299 * in puts().
300 */
301 if (ch == '\n')
302 WATCHDOG_RESET();
303
304 return 0;
305}
306
307static int ns16550_serial_pending(struct udevice *dev, bool input)
308{
309 struct NS16550 *const com_port = dev_get_priv(dev);
310
311 if (input)
312 return serial_in(&com_port->lsr) & UART_LSR_DR ? 1 : 0;
313 else
314 return serial_in(&com_port->lsr) & UART_LSR_THRE ? 0 : 1;
315}
316
317static int ns16550_serial_getc(struct udevice *dev)
318{
319 struct NS16550 *const com_port = dev_get_priv(dev);
320
Simon Glassaea2be22014-10-22 21:37:03 -0600321 if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
Simon Glass12e431b2014-09-04 16:27:34 -0600322 return -EAGAIN;
323
324 return serial_in(&com_port->rbr);
325}
326
327static int ns16550_serial_setbrg(struct udevice *dev, int baudrate)
328{
329 struct NS16550 *const com_port = dev_get_priv(dev);
330 struct ns16550_platdata *plat = com_port->plat;
331 int clock_divisor;
332
333 clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate);
334
335 NS16550_setbrg(com_port, clock_divisor);
336
337 return 0;
338}
339
340int ns16550_serial_probe(struct udevice *dev)
341{
342 struct NS16550 *const com_port = dev_get_priv(dev);
343
Simon Glass11c1a872014-10-22 21:37:05 -0600344 com_port->plat = dev_get_platdata(dev);
Simon Glass12e431b2014-09-04 16:27:34 -0600345 NS16550_init(com_port, -1);
346
347 return 0;
348}
349
Masahiro Yamada0f925822015-08-12 07:31:55 +0900350#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glass12e431b2014-09-04 16:27:34 -0600351int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
352{
Simon Glass12e431b2014-09-04 16:27:34 -0600353 struct ns16550_platdata *plat = dev->platdata;
354 fdt_addr_t addr;
355
Bin Meng3db886a2014-12-31 16:05:12 +0800356 /* try Processor Local Bus device first */
Simon Glass4e9838c2015-08-11 08:33:29 -0600357 addr = dev_get_addr(dev);
Simon Glassfcc0a872015-11-29 13:17:54 -0700358#if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI)
Bin Meng3db886a2014-12-31 16:05:12 +0800359 if (addr == FDT_ADDR_T_NONE) {
360 /* then try pci device */
361 struct fdt_pci_addr pci_addr;
362 u32 bar;
363 int ret;
364
365 /* we prefer to use a memory-mapped register */
366 ret = fdtdec_get_pci_addr(gd->fdt_blob, dev->of_offset,
367 FDT_PCI_SPACE_MEM32, "reg",
368 &pci_addr);
369 if (ret) {
370 /* try if there is any i/o-mapped register */
371 ret = fdtdec_get_pci_addr(gd->fdt_blob,
372 dev->of_offset,
373 FDT_PCI_SPACE_IO,
374 "reg", &pci_addr);
375 if (ret)
376 return ret;
377 }
378
Simon Glassfcc0a872015-11-29 13:17:54 -0700379 ret = fdtdec_get_pci_bar32(dev, &pci_addr, &bar);
Bin Meng3db886a2014-12-31 16:05:12 +0800380 if (ret)
381 return ret;
382
383 addr = bar;
384 }
385#endif
386
Simon Glass12e431b2014-09-04 16:27:34 -0600387 if (addr == FDT_ADDR_T_NONE)
388 return -EINVAL;
389
Paul Burtondf8ec552016-05-17 07:43:26 +0100390#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glass167efe02014-10-22 21:37:04 -0600391 plat->base = addr;
Paul Burtondf8ec552016-05-17 07:43:26 +0100392#else
393 plat->base = (unsigned long)map_physmem(addr, 0, MAP_NOCACHE);
394#endif
395
Michal Simek59b35dd2016-02-16 16:17:49 +0100396 plat->reg_offset = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
397 "reg-offset", 0);
Simon Glass12e431b2014-09-04 16:27:34 -0600398 plat->reg_shift = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
Thomas Chou80e06142015-11-29 14:01:03 +0800399 "reg-shift", 0);
Thomas Chou8e62d322015-11-19 21:48:05 +0800400 plat->clock = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
401 "clock-frequency",
402 CONFIG_SYS_NS16550_CLK);
403 if (!plat->clock) {
404 debug("ns16550 clock not defined\n");
405 return -EINVAL;
406 }
Simon Glass12e431b2014-09-04 16:27:34 -0600407
408 return 0;
409}
Simon Glass11c1a872014-10-22 21:37:05 -0600410#endif
Simon Glass12e431b2014-09-04 16:27:34 -0600411
412const struct dm_serial_ops ns16550_serial_ops = {
413 .putc = ns16550_serial_putc,
414 .pending = ns16550_serial_pending,
415 .getc = ns16550_serial_getc,
416 .setbrg = ns16550_serial_setbrg,
417};
Thomas Chou8e62d322015-11-19 21:48:05 +0800418
Thomas Chou8e62d322015-11-19 21:48:05 +0800419#if CONFIG_IS_ENABLED(OF_CONTROL)
Thomas Choucc4228f2015-12-14 20:45:09 +0800420/*
421 * Please consider existing compatible strings before adding a new
422 * one to keep this table compact. Or you may add a generic "ns16550"
423 * compatible string to your dts.
424 */
Thomas Chou8e62d322015-11-19 21:48:05 +0800425static const struct udevice_id ns16550_serial_ids[] = {
426 { .compatible = "ns16550" },
427 { .compatible = "ns16550a" },
428 { .compatible = "nvidia,tegra20-uart" },
429 { .compatible = "snps,dw-apb-uart" },
430 { .compatible = "ti,omap2-uart" },
431 { .compatible = "ti,omap3-uart" },
432 { .compatible = "ti,omap4-uart" },
433 { .compatible = "ti,am3352-uart" },
434 { .compatible = "ti,am4372-uart" },
435 { .compatible = "ti,dra742-uart" },
436 {}
437};
438#endif
439
Simon Glassb7e29832015-12-13 21:36:59 -0700440#if CONFIG_IS_ENABLED(SERIAL_PRESENT)
Thomas Chou8e62d322015-11-19 21:48:05 +0800441U_BOOT_DRIVER(ns16550_serial) = {
442 .name = "ns16550_serial",
443 .id = UCLASS_SERIAL,
444#if CONFIG_IS_ENABLED(OF_CONTROL)
445 .of_match = ns16550_serial_ids,
446 .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
447 .platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
448#endif
449 .priv_auto_alloc_size = sizeof(struct NS16550),
450 .probe = ns16550_serial_probe,
451 .ops = &ns16550_serial_ops,
Simon Glassb7e5a642015-12-04 08:58:38 -0700452 .flags = DM_FLAG_PRE_RELOC,
Thomas Chou8e62d322015-11-19 21:48:05 +0800453};
Simon Glassb7e29832015-12-13 21:36:59 -0700454#endif
Simon Glass12e431b2014-09-04 16:27:34 -0600455#endif /* CONFIG_DM_SERIAL */