3 * originally from linux source (arch/powerpc/boot/ns16550.c)
4 * modified to use CONFIG_SYS_ISA_MEM and new defines
15 #include <linux/types.h>
18 DECLARE_GLOBAL_DATA_PTR;
20 #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 */
24 #ifndef CONFIG_DM_SERIAL
25 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
26 #define serial_out(x, y) outb(x, (ulong)y)
27 #define serial_in(y) inb((ulong)y)
28 #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
29 #define serial_out(x, y) out_be32(y, x)
30 #define serial_in(y) in_be32(y)
31 #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
32 #define serial_out(x, y) out_le32(y, x)
33 #define serial_in(y) in_le32(y)
35 #define serial_out(x, y) writeb(x, y)
36 #define serial_in(y) readb(y)
38 #endif /* !CONFIG_DM_SERIAL */
40 #if defined(CONFIG_SOC_KEYSTONE)
41 #define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0
42 #define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0))
44 #ifdef CONFIG_SERIAL_HW_FLOW_CONTROL
45 #define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE)
47 #define UART_MCRVAL (UART_MCR_RTS)
51 #ifndef CONFIG_SYS_NS16550_IER
52 #define CONFIG_SYS_NS16550_IER 0x00
53 #endif /* CONFIG_SYS_NS16550_IER */
55 static inline void serial_out_shift(void *addr, int shift, int value)
57 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
58 outb(value, (ulong)addr);
59 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
60 out_le32(addr, value);
61 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
62 out_be32(addr, value);
63 #elif defined(CONFIG_SYS_NS16550_MEM32)
65 #elif defined(CONFIG_SYS_BIG_ENDIAN)
66 writeb(value, addr + (1 << shift) - 1);
72 static inline int serial_in_shift(void *addr, int shift)
74 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
75 return inb((ulong)addr);
76 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
78 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
80 #elif defined(CONFIG_SYS_NS16550_MEM32)
82 #elif defined(CONFIG_SYS_BIG_ENDIAN)
83 return readb(addr + (1 << shift) - 1);
89 #ifdef CONFIG_DM_SERIAL
91 #ifndef CONFIG_SYS_NS16550_CLK
92 #define CONFIG_SYS_NS16550_CLK 0
95 static void ns16550_writeb(NS16550_t port, int offset, int value)
97 struct ns16550_platdata *plat = port->plat;
100 offset *= 1 << plat->reg_shift;
101 addr = (unsigned char *)plat->base + offset;
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.
107 serial_out_shift(addr + plat->reg_offset, plat->reg_shift, value);
110 static int ns16550_readb(NS16550_t port, int offset)
112 struct ns16550_platdata *plat = port->plat;
115 offset *= 1 << plat->reg_shift;
116 addr = (unsigned char *)plat->base + offset;
118 return serial_in_shift(addr + plat->reg_offset, plat->reg_shift);
121 static u32 ns16550_getfcr(NS16550_t port)
123 struct ns16550_platdata *plat = port->plat;
128 /* We can clean these up once everything is moved to driver model */
129 #define serial_out(value, addr) \
130 ns16550_writeb(com_port, \
131 (unsigned char *)addr - (unsigned char *)com_port, value)
132 #define serial_in(addr) \
133 ns16550_readb(com_port, \
134 (unsigned char *)addr - (unsigned char *)com_port)
136 static u32 ns16550_getfcr(NS16550_t port)
138 return UART_FCR_DEFVAL;
142 int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
144 const unsigned int mode_x_div = 16;
146 return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
149 static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
151 /* to keep serial format, read lcr before writing BKSE */
152 int lcr_val = serial_in(&com_port->lcr) & ~UART_LCR_BKSE;
154 serial_out(UART_LCR_BKSE | lcr_val, &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(lcr_val, &com_port->lcr);
160 void NS16550_init(NS16550_t com_port, int baud_divisor)
162 #if (defined(CONFIG_SPL_BUILD) && \
163 (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
165 * 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.
169 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
171 if (baud_divisor != -1)
172 NS16550_setbrg(com_port, baud_divisor);
173 serial_out(0, &com_port->mdr1);
177 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
180 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
181 #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_OMAP_SERIAL)
182 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
185 serial_out(UART_MCRVAL, &com_port->mcr);
186 serial_out(ns16550_getfcr(com_port), &com_port->fcr);
187 /* initialize serial config to 8N1 before writing baudrate */
188 serial_out(UART_LCRVAL, &com_port->lcr);
189 if (baud_divisor != -1)
190 NS16550_setbrg(com_port, baud_divisor);
191 #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_SOC_DA8XX) || \
192 defined(CONFIG_OMAP_SERIAL)
193 /* /16 is proper to hit 115200 with 48MHz */
194 serial_out(0, &com_port->mdr1);
196 #if defined(CONFIG_SOC_KEYSTONE)
197 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
201 #ifndef CONFIG_NS16550_MIN_FUNCTIONS
202 void NS16550_reinit(NS16550_t com_port, int baud_divisor)
204 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
205 NS16550_setbrg(com_port, 0);
206 serial_out(UART_MCRVAL, &com_port->mcr);
207 serial_out(ns16550_getfcr(com_port), &com_port->fcr);
208 NS16550_setbrg(com_port, baud_divisor);
210 #endif /* CONFIG_NS16550_MIN_FUNCTIONS */
212 void NS16550_putc(NS16550_t com_port, char c)
214 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
216 serial_out(c, &com_port->thr);
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
228 #ifndef CONFIG_NS16550_MIN_FUNCTIONS
229 char NS16550_getc(NS16550_t com_port)
231 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
232 #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
233 extern void usbtty_poll(void);
238 return serial_in(&com_port->rbr);
241 int NS16550_tstc(NS16550_t com_port)
243 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
246 #endif /* CONFIG_NS16550_MIN_FUNCTIONS */
248 #ifdef CONFIG_DEBUG_UART_NS16550
250 #include <debug_uart.h>
252 static inline void _debug_uart_init(void)
254 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
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
263 baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
265 serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER);
266 serial_dout(&com_port->mcr, UART_MCRVAL);
267 serial_dout(&com_port->fcr, UART_FCR_DEFVAL);
269 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);
275 static inline void _debug_uart_putc(int ch)
277 struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
279 while (!(serial_din(&com_port->lsr) & UART_LSR_THRE))
281 serial_dout(&com_port->thr, ch);
288 #ifdef CONFIG_DM_SERIAL
289 static int ns16550_serial_putc(struct udevice *dev, const char ch)
291 struct NS16550 *const com_port = dev_get_priv(dev);
293 if (!(serial_in(&com_port->lsr) & UART_LSR_THRE))
295 serial_out(ch, &com_port->thr);
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
309 static int ns16550_serial_pending(struct udevice *dev, bool input)
311 struct NS16550 *const com_port = dev_get_priv(dev);
314 return (serial_in(&com_port->lsr) & UART_LSR_DR) ? 1 : 0;
316 return (serial_in(&com_port->lsr) & UART_LSR_THRE) ? 0 : 1;
319 static int ns16550_serial_getc(struct udevice *dev)
321 struct NS16550 *const com_port = dev_get_priv(dev);
323 if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
326 return serial_in(&com_port->rbr);
329 static int ns16550_serial_setbrg(struct udevice *dev, int baudrate)
331 struct NS16550 *const com_port = dev_get_priv(dev);
332 struct ns16550_platdata *plat = com_port->plat;
335 clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate);
337 NS16550_setbrg(com_port, clock_divisor);
342 static int ns16550_serial_setconfig(struct udevice *dev, uint serial_config)
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);
351 * only parity config is implemented, check if other serial settings
352 * are the default one.
354 if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP)
355 return -ENOTSUPP; /* not supported in driver*/
358 case SERIAL_PAR_NONE:
362 lcr_val |= UART_LCR_PEN;
364 case SERIAL_PAR_EVEN:
365 lcr_val |= UART_LCR_PEN | UART_LCR_EPS;
368 return -ENOTSUPP; /* not supported in driver*/
371 serial_out(lcr_val, &com_port->lcr);
375 static int ns16550_serial_getinfo(struct udevice *dev,
376 struct serial_device_info *info)
378 struct NS16550 *const com_port = dev_get_priv(dev);
379 struct ns16550_platdata *plat = com_port->plat;
381 info->type = SERIAL_CHIP_16550_COMPATIBLE;
382 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
383 info->addr_space = SERIAL_ADDRESS_SPACE_IO;
385 info->addr_space = SERIAL_ADDRESS_SPACE_MEMORY;
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;
394 int ns16550_serial_probe(struct udevice *dev)
396 struct NS16550 *const com_port = dev_get_priv(dev);
397 struct reset_ctl_bulk reset_bulk;
400 ret = reset_get_bulk(dev, &reset_bulk);
402 reset_deassert_bulk(&reset_bulk);
404 com_port->plat = dev_get_platdata(dev);
405 NS16550_init(com_port, -1);
410 #if CONFIG_IS_ENABLED(OF_CONTROL)
417 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
418 int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
420 struct ns16550_platdata *plat = dev->platdata;
421 const u32 port_type = dev_get_driver_data(dev);
426 /* try Processor Local Bus device first */
427 addr = dev_read_addr(dev);
428 #if CONFIG_IS_ENABLED(PCI) && defined(CONFIG_DM_PCI)
429 if (addr == FDT_ADDR_T_NONE) {
430 /* then try pci device */
431 struct fdt_pci_addr pci_addr;
435 /* we prefer to use a memory-mapped register */
436 ret = fdtdec_get_pci_addr(gd->fdt_blob, dev_of_offset(dev),
437 FDT_PCI_SPACE_MEM32, "reg",
440 /* try if there is any i/o-mapped register */
441 ret = fdtdec_get_pci_addr(gd->fdt_blob,
449 ret = fdtdec_get_pci_bar32(dev, &pci_addr, &bar);
457 if (addr == FDT_ADDR_T_NONE)
460 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
463 plat->base = (unsigned long)map_physmem(addr, 0, MAP_NOCACHE);
466 plat->reg_offset = dev_read_u32_default(dev, "reg-offset", 0);
467 plat->reg_shift = dev_read_u32_default(dev, "reg-shift", 0);
468 plat->reg_width = dev_read_u32_default(dev, "reg-io-width", 1);
470 err = clk_get_by_index(dev, 0, &clk);
472 err = clk_get_rate(&clk);
473 if (!IS_ERR_VALUE(err))
475 } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) {
476 debug("ns16550 failed to get clock\n");
481 plat->clock = dev_read_u32_default(dev, "clock-frequency",
482 CONFIG_SYS_NS16550_CLK);
484 debug("ns16550 clock not defined\n");
488 plat->fcr = UART_FCR_DEFVAL;
489 if (port_type == PORT_JZ4780)
490 plat->fcr |= UART_FCR_UME;
496 const 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,
501 .setconfig = ns16550_serial_setconfig,
502 .getinfo = ns16550_serial_getinfo,
505 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
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.
511 static const struct udevice_id ns16550_serial_ids[] = {
512 { .compatible = "ns16550", .data = PORT_NS16550 },
513 { .compatible = "ns16550a", .data = PORT_NS16550 },
514 { .compatible = "ingenic,jz4780-uart", .data = PORT_JZ4780 },
515 { .compatible = "nvidia,tegra20-uart", .data = PORT_NS16550 },
516 { .compatible = "snps,dw-apb-uart", .data = PORT_NS16550 },
519 #endif /* OF_CONTROL && !OF_PLATDATA */
521 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
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)
525 U_BOOT_DRIVER(ns16550_serial) = {
526 .name = "ns16550_serial",
528 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
529 .of_match = ns16550_serial_ids,
530 .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
531 .platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
533 .priv_auto_alloc_size = sizeof(struct NS16550),
534 .probe = ns16550_serial_probe,
535 .ops = &ns16550_serial_ops,
536 #if !CONFIG_IS_ENABLED(OF_CONTROL)
537 .flags = DM_FLAG_PRE_RELOC,
541 #endif /* SERIAL_PRESENT */
543 #endif /* CONFIG_DM_SERIAL */