blob: 3c9f3b05ba9541421e1bfa2fbffe9ec72426fc35 [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>
Paul Burton8aadc562016-09-08 07:47:29 +01008#include <clk.h>
Simon Glass79a9da32014-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 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 Glassb31fb122015-02-27 22:06:26 -070058static inline void serial_out_shift(void *addr, int shift, int value)
Simon Glass6aba4fd2015-01-26 18:27:08 -070059{
Simon Glass79a9da32014-09-04 16:27:34 -060060#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glass96e230b2014-10-10 07:49:13 -060061 outb(value, (ulong)addr);
Simon Glass79a9da32014-09-04 16:27:34 -060062#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 Glass0b31ec72015-05-12 14:55:02 -060066#elif defined(CONFIG_SYS_NS16550_MEM32)
67 writel(value, addr);
Simon Glass79a9da32014-09-04 16:27:34 -060068#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);
Simon Glass0b31ec72015-05-12 14:55:02 -060083#elif defined(CONFIG_SYS_NS16550_MEM32)
84 return readl(addr);
Simon Glass79a9da32014-09-04 16:27:34 -060085#elif defined(CONFIG_SYS_BIG_ENDIAN)
Axel Linb5c372d2015-02-28 15:55:36 +080086 return readb(addr + (1 << shift) - 1);
Simon Glass79a9da32014-09-04 16:27:34 -060087#else
88 return readb(addr);
89#endif
90}
91
Marek Vasut3e97cbb2016-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 Glass6aba4fd2015-01-26 18:27:08 -070098static 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 Burtonc8acc892016-05-17 07:43:26 +0100104 addr = (unsigned char *)plat->base + offset;
105
Simon Glass6aba4fd2015-01-26 18:27:08 -0700106 /*
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 Simek7e0cdc42016-02-16 16:17:49 +0100110 serial_out_shift(addr + plat->reg_offset, plat->reg_shift, value);
Simon Glass6aba4fd2015-01-26 18:27:08 -0700111}
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 Burtonc8acc892016-05-17 07:43:26 +0100119 addr = (unsigned char *)plat->base + offset;
Simon Glass6aba4fd2015-01-26 18:27:08 -0700120
Michal Simek7e0cdc42016-02-16 16:17:49 +0100121 return serial_in_shift(addr + plat->reg_offset, plat->reg_shift);
Simon Glass6aba4fd2015-01-26 18:27:08 -0700122}
123
Marek Vasutf523c9c2016-12-01 02:06:29 +0100124static u32 ns16550_getfcr(NS16550_t port)
125{
126 struct ns16550_platdata *plat = port->plat;
127
128 return plat->fcr;
129}
130
Simon Glass79a9da32014-09-04 16:27:34 -0600131/* We can clean these up once everything is moved to driver model */
132#define serial_out(value, addr) \
Simon Glassb31fb122015-02-27 22:06:26 -0700133 ns16550_writeb(com_port, \
134 (unsigned char *)addr - (unsigned char *)com_port, value)
Simon Glass79a9da32014-09-04 16:27:34 -0600135#define serial_in(addr) \
Simon Glassb31fb122015-02-27 22:06:26 -0700136 ns16550_readb(com_port, \
137 (unsigned char *)addr - (unsigned char *)com_port)
Marek Vasutf523c9c2016-12-01 02:06:29 +0100138#else
139static u32 ns16550_getfcr(NS16550_t port)
140{
141 return UART_FCRVAL;
142}
Simon Glass79a9da32014-09-04 16:27:34 -0600143#endif
144
Marek Vasut3b164a52016-05-25 02:13:16 +0200145int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
Simon Glasse98e01e2014-09-04 16:27:32 -0600146{
147 const unsigned int mode_x_div = 16;
148
Simon Glass27afb522015-01-26 18:27:09 -0700149 return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
150}
151
Simon Glassc31ebfe2014-09-04 16:27:33 -0600152static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
153{
154 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
155 serial_out(baud_divisor & 0xff, &com_port->dll);
156 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
157 serial_out(UART_LCRVAL, &com_port->lcr);
158}
159
Simon Glassdd5497c2011-10-15 19:14:09 +0000160void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000161{
Gregoire Gentil6b05d0a2014-11-10 11:04:10 -0800162#if (defined(CONFIG_SPL_BUILD) && \
163 (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
Manfred Huberf9b8ae32013-03-29 02:52:36 +0000164 /*
Gregoire Gentil6b05d0a2014-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 Huberf9b8ae32013-03-29 02:52:36 +0000168 */
169 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
170 == UART_LSR_THRE) {
Simon Glass79a9da32014-09-04 16:27:34 -0600171 if (baud_divisor != -1)
172 NS16550_setbrg(com_port, baud_divisor);
Manfred Huberf9b8ae32013-03-29 02:52:36 +0000173 serial_out(0, &com_port->mdr1);
174 }
175#endif
176
Scott Wood6c6f0612012-09-18 18:19:05 -0500177 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
178 ;
179
Prafulla Wadaskar66216372010-10-27 21:58:31 +0530180 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Tom Rinifc695e32013-12-20 11:19:33 -0500181#if defined(CONFIG_OMAP) || defined(CONFIG_AM33XX) || \
182 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Graeme Russ14f06e62010-04-24 00:05:46 +1000183 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk21136db2003-07-16 21:53:01 +0000184#endif
Graeme Russ14f06e62010-04-24 00:05:46 +1000185 serial_out(UART_MCRVAL, &com_port->mcr);
Marek Vasutf523c9c2016-12-01 02:06:29 +0100186 serial_out(ns16550_getfcr(com_port), &com_port->fcr);
Simon Glass79a9da32014-09-04 16:27:34 -0600187 if (baud_divisor != -1)
188 NS16550_setbrg(com_port, baud_divisor);
Masahiro Yamada641e3ce2014-07-30 19:11:41 +0900189#if defined(CONFIG_OMAP) || \
Matt Porter7967b1a2013-03-15 10:07:09 +0000190 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
TENART Antoinea6be77c2013-07-02 12:05:58 +0200191 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Chandan Nath7d744102011-10-14 02:58:26 +0000192
Simon Glassdd5497c2011-10-15 19:14:09 +0000193 /* /16 is proper to hit 115200 with 48MHz */
194 serial_out(0, &com_port->mdr1);
Mike Frysingerd0e97862009-02-11 20:26:52 -0500195#endif /* CONFIG_OMAP */
Khoronzhuk, Ivan80902982014-07-16 00:59:25 +0300196#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianov7bcf4d62014-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 Madriddfa028a2009-02-18 14:30:44 -0800201#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +0000202void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000203{
Prafulla Wadaskar66216372010-10-27 21:58:31 +0530204 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Simon Glassc31ebfe2014-09-04 16:27:33 -0600205 NS16550_setbrg(com_port, 0);
Graeme Russ14f06e62010-04-24 00:05:46 +1000206 serial_out(UART_MCRVAL, &com_port->mcr);
Marek Vasutf523c9c2016-12-01 02:06:29 +0100207 serial_out(ns16550_getfcr(com_port), &com_port->fcr);
Simon Glassc31ebfe2014-09-04 16:27:33 -0600208 NS16550_setbrg(com_port, baud_divisor);
wdenke85390d2002-04-01 14:29:03 +0000209}
Ron Madriddfa028a2009-02-18 14:30:44 -0800210#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000211
Simon Glassdd5497c2011-10-15 19:14:09 +0000212void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000213{
Simon Glassdd5497c2011-10-15 19:14:09 +0000214 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
215 ;
Graeme Russ14f06e62010-04-24 00:05:46 +1000216 serial_out(c, &com_port->thr);
Stefan Roese57b99882010-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 Madriddfa028a2009-02-18 14:30:44 -0800228#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +0000229char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000230{
Graeme Russ14f06e62010-04-24 00:05:46 +1000231 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasut9e1fca92012-09-15 10:25:19 +0200232#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk29e7f5a2004-03-12 00:14:09 +0000233 extern void usbtty_poll(void);
234 usbtty_poll();
235#endif
Ladislav Michlcc294422010-02-01 23:34:25 +0100236 WATCHDOG_RESET();
wdenk29e7f5a2004-03-12 00:14:09 +0000237 }
Graeme Russ14f06e62010-04-24 00:05:46 +1000238 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000239}
240
Simon Glassdd5497c2011-10-15 19:14:09 +0000241int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000242{
Simon Glassdd5497c2011-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 Madriddfa028a2009-02-18 14:30:44 -0800246#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
Simon Glass79a9da32014-09-04 16:27:34 -0600247
Simon Glass27afb522015-01-26 18:27:09 -0700248#ifdef CONFIG_DEBUG_UART_NS16550
249
250#include <debug_uart.h>
251
Simon Glass92465162015-06-23 15:39:06 -0600252#define serial_dout(reg, value) \
253 serial_out_shift((char *)com_port + \
254 ((char *)reg - (char *)com_port) * \
255 (1 << CONFIG_DEBUG_UART_SHIFT), \
256 CONFIG_DEBUG_UART_SHIFT, value)
257#define serial_din(reg) \
258 serial_in_shift((char *)com_port + \
259 ((char *)reg - (char *)com_port) * \
260 (1 << CONFIG_DEBUG_UART_SHIFT), \
261 CONFIG_DEBUG_UART_SHIFT)
262
Simon Glass60517d72015-10-18 19:51:23 -0600263static inline void _debug_uart_init(void)
Simon Glass27afb522015-01-26 18:27:09 -0700264{
265 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
266 int baud_divisor;
267
268 /*
269 * We copy the code from above because it is already horribly messy.
270 * Trying to refactor to nicely remove the duplication doesn't seem
271 * feasible. The better fix is to move all users of this driver to
272 * driver model.
273 */
Marek Vasut3b164a52016-05-25 02:13:16 +0200274 baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
275 CONFIG_BAUDRATE);
Simon Glass92465162015-06-23 15:39:06 -0600276 serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER);
277 serial_dout(&com_port->mcr, UART_MCRVAL);
278 serial_dout(&com_port->fcr, UART_FCRVAL);
Simon Glass27afb522015-01-26 18:27:09 -0700279
Simon Glass92465162015-06-23 15:39:06 -0600280 serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
281 serial_dout(&com_port->dll, baud_divisor & 0xff);
282 serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff);
283 serial_dout(&com_port->lcr, UART_LCRVAL);
Simon Glass27afb522015-01-26 18:27:09 -0700284}
285
286static inline void _debug_uart_putc(int ch)
287{
288 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
289
Simon Glass92465162015-06-23 15:39:06 -0600290 while (!(serial_din(&com_port->lsr) & UART_LSR_THRE))
Simon Glass27afb522015-01-26 18:27:09 -0700291 ;
Simon Glass92465162015-06-23 15:39:06 -0600292 serial_dout(&com_port->thr, ch);
Simon Glass27afb522015-01-26 18:27:09 -0700293}
294
295DEBUG_UART_FUNCS
296
297#endif
298
Simon Glass79a9da32014-09-04 16:27:34 -0600299#ifdef CONFIG_DM_SERIAL
300static int ns16550_serial_putc(struct udevice *dev, const char ch)
301{
302 struct NS16550 *const com_port = dev_get_priv(dev);
303
304 if (!(serial_in(&com_port->lsr) & UART_LSR_THRE))
305 return -EAGAIN;
306 serial_out(ch, &com_port->thr);
307
308 /*
309 * Call watchdog_reset() upon newline. This is done here in putc
310 * since the environment code uses a single puts() to print the complete
311 * environment upon "printenv". So we can't put this watchdog call
312 * in puts().
313 */
314 if (ch == '\n')
315 WATCHDOG_RESET();
316
317 return 0;
318}
319
320static int ns16550_serial_pending(struct udevice *dev, bool input)
321{
322 struct NS16550 *const com_port = dev_get_priv(dev);
323
324 if (input)
325 return serial_in(&com_port->lsr) & UART_LSR_DR ? 1 : 0;
326 else
327 return serial_in(&com_port->lsr) & UART_LSR_THRE ? 0 : 1;
328}
329
330static int ns16550_serial_getc(struct udevice *dev)
331{
332 struct NS16550 *const com_port = dev_get_priv(dev);
333
Simon Glassddb958c2014-10-22 21:37:03 -0600334 if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
Simon Glass79a9da32014-09-04 16:27:34 -0600335 return -EAGAIN;
336
337 return serial_in(&com_port->rbr);
338}
339
340static int ns16550_serial_setbrg(struct udevice *dev, int baudrate)
341{
342 struct NS16550 *const com_port = dev_get_priv(dev);
343 struct ns16550_platdata *plat = com_port->plat;
344 int clock_divisor;
345
346 clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate);
347
348 NS16550_setbrg(com_port, clock_divisor);
349
350 return 0;
351}
352
353int ns16550_serial_probe(struct udevice *dev)
354{
355 struct NS16550 *const com_port = dev_get_priv(dev);
356
Simon Glass3bf04f32014-10-22 21:37:05 -0600357 com_port->plat = dev_get_platdata(dev);
Simon Glass79a9da32014-09-04 16:27:34 -0600358 NS16550_init(com_port, -1);
359
360 return 0;
361}
362
Simon Glass18798be2016-07-04 11:58:23 -0600363#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass79a9da32014-09-04 16:27:34 -0600364int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
365{
Simon Glass79a9da32014-09-04 16:27:34 -0600366 struct ns16550_platdata *plat = dev->platdata;
367 fdt_addr_t addr;
Masahiro Yamada09abe2b2016-09-26 20:45:27 +0900368 struct clk clk;
369 int err;
Simon Glass79a9da32014-09-04 16:27:34 -0600370
Bin Meng0203c1c2014-12-31 16:05:12 +0800371 /* try Processor Local Bus device first */
Simon Glass09717782015-08-11 08:33:29 -0600372 addr = dev_get_addr(dev);
Simon Glassf1037ad2015-11-29 13:17:54 -0700373#if defined(CONFIG_PCI) && defined(CONFIG_DM_PCI)
Bin Meng0203c1c2014-12-31 16:05:12 +0800374 if (addr == FDT_ADDR_T_NONE) {
375 /* then try pci device */
376 struct fdt_pci_addr pci_addr;
377 u32 bar;
378 int ret;
379
380 /* we prefer to use a memory-mapped register */
381 ret = fdtdec_get_pci_addr(gd->fdt_blob, dev->of_offset,
382 FDT_PCI_SPACE_MEM32, "reg",
383 &pci_addr);
384 if (ret) {
385 /* try if there is any i/o-mapped register */
386 ret = fdtdec_get_pci_addr(gd->fdt_blob,
387 dev->of_offset,
388 FDT_PCI_SPACE_IO,
389 "reg", &pci_addr);
390 if (ret)
391 return ret;
392 }
393
Simon Glassf1037ad2015-11-29 13:17:54 -0700394 ret = fdtdec_get_pci_bar32(dev, &pci_addr, &bar);
Bin Meng0203c1c2014-12-31 16:05:12 +0800395 if (ret)
396 return ret;
397
398 addr = bar;
399 }
400#endif
401
Simon Glass79a9da32014-09-04 16:27:34 -0600402 if (addr == FDT_ADDR_T_NONE)
403 return -EINVAL;
404
Paul Burtonc8acc892016-05-17 07:43:26 +0100405#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glass25463942014-10-22 21:37:04 -0600406 plat->base = addr;
Paul Burtonc8acc892016-05-17 07:43:26 +0100407#else
408 plat->base = (unsigned long)map_physmem(addr, 0, MAP_NOCACHE);
409#endif
410
Michal Simek7e0cdc42016-02-16 16:17:49 +0100411 plat->reg_offset = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
412 "reg-offset", 0);
Simon Glass79a9da32014-09-04 16:27:34 -0600413 plat->reg_shift = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
Thomas Chou2cd1d0c2015-11-29 14:01:03 +0800414 "reg-shift", 0);
Paul Burton8aadc562016-09-08 07:47:29 +0100415
416 err = clk_get_by_index(dev, 0, &clk);
417 if (!err) {
418 err = clk_get_rate(&clk);
419 if (!IS_ERR_VALUE(err))
420 plat->clock = err;
Alexandre Courboteaa24e7f2016-09-30 17:37:00 +0900421 } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) {
Paul Burton8aadc562016-09-08 07:47:29 +0100422 debug("ns16550 failed to get clock\n");
423 return err;
424 }
425
426 if (!plat->clock)
427 plat->clock = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
428 "clock-frequency",
429 CONFIG_SYS_NS16550_CLK);
Thomas Chou16b2e7e2015-11-19 21:48:05 +0800430 if (!plat->clock) {
431 debug("ns16550 clock not defined\n");
432 return -EINVAL;
433 }
Simon Glass79a9da32014-09-04 16:27:34 -0600434
Marek Vasutf523c9c2016-12-01 02:06:29 +0100435 plat->fcr = UART_FCRVAL;
436
Simon Glass79a9da32014-09-04 16:27:34 -0600437 return 0;
438}
Simon Glass3bf04f32014-10-22 21:37:05 -0600439#endif
Simon Glass79a9da32014-09-04 16:27:34 -0600440
441const struct dm_serial_ops ns16550_serial_ops = {
442 .putc = ns16550_serial_putc,
443 .pending = ns16550_serial_pending,
444 .getc = ns16550_serial_getc,
445 .setbrg = ns16550_serial_setbrg,
446};
Thomas Chou16b2e7e2015-11-19 21:48:05 +0800447
Simon Glass18798be2016-07-04 11:58:23 -0600448#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Thomas Chou16b2e7e2015-11-19 21:48:05 +0800449#if CONFIG_IS_ENABLED(OF_CONTROL)
Thomas Choudad53672015-12-14 20:45:09 +0800450/*
451 * Please consider existing compatible strings before adding a new
452 * one to keep this table compact. Or you may add a generic "ns16550"
453 * compatible string to your dts.
454 */
Thomas Chou16b2e7e2015-11-19 21:48:05 +0800455static const struct udevice_id ns16550_serial_ids[] = {
456 { .compatible = "ns16550" },
457 { .compatible = "ns16550a" },
458 { .compatible = "nvidia,tegra20-uart" },
459 { .compatible = "snps,dw-apb-uart" },
460 { .compatible = "ti,omap2-uart" },
461 { .compatible = "ti,omap3-uart" },
462 { .compatible = "ti,omap4-uart" },
463 { .compatible = "ti,am3352-uart" },
464 { .compatible = "ti,am4372-uart" },
465 { .compatible = "ti,dra742-uart" },
466 {}
467};
468#endif
469
Simon Glass9ebf3482015-12-13 21:36:59 -0700470#if CONFIG_IS_ENABLED(SERIAL_PRESENT)
Thomas Chou16b2e7e2015-11-19 21:48:05 +0800471U_BOOT_DRIVER(ns16550_serial) = {
472 .name = "ns16550_serial",
473 .id = UCLASS_SERIAL,
474#if CONFIG_IS_ENABLED(OF_CONTROL)
475 .of_match = ns16550_serial_ids,
476 .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
477 .platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
478#endif
479 .priv_auto_alloc_size = sizeof(struct NS16550),
480 .probe = ns16550_serial_probe,
481 .ops = &ns16550_serial_ops,
Simon Glass6ef533e2015-12-04 08:58:38 -0700482 .flags = DM_FLAG_PRE_RELOC,
Thomas Chou16b2e7e2015-11-19 21:48:05 +0800483};
Simon Glass9ebf3482015-12-13 21:36:59 -0700484#endif
Simon Glass18798be2016-07-04 11:58:23 -0600485#endif /* !OF_PLATDATA */
Simon Glass79a9da32014-09-04 16:27:34 -0600486#endif /* CONFIG_DM_SERIAL */