2002-04-01 14:29:03 +00:00
|
|
|
/*
|
|
|
|
* COM1 NS16550 support
|
2010-04-15 14:07:28 +00:00
|
|
|
* originally from linux source (arch/powerpc/boot/ns16550.c)
|
2008-10-16 13:01:15 +00:00
|
|
|
* modified to use CONFIG_SYS_ISA_MEM and new defines
|
2002-04-01 14:29:03 +00:00
|
|
|
*/
|
|
|
|
|
2019-12-28 17:44:58 +00:00
|
|
|
#include <clock_legacy.h>
|
2014-09-04 22:27:32 +00:00
|
|
|
#include <common.h>
|
2016-09-08 06:47:29 +00:00
|
|
|
#include <clk.h>
|
2014-09-04 22:27:34 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
2002-04-01 14:29:03 +00:00
|
|
|
#include <ns16550.h>
|
2018-06-14 10:45:22 +00:00
|
|
|
#include <reset.h>
|
2014-09-04 22:27:34 +00:00
|
|
|
#include <serial.h>
|
2010-02-01 22:34:25 +00:00
|
|
|
#include <watchdog.h>
|
2020-02-03 14:36:15 +00:00
|
|
|
#include <linux/err.h>
|
2010-04-23 14:05:46 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <asm/io.h>
|
2002-04-01 14:29:03 +00:00
|
|
|
|
2014-09-04 22:27:34 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2009-04-03 09:53:01 +00:00
|
|
|
#define UART_LCRVAL UART_LCR_8N1 /* 8 data, 1 stop, no parity */
|
|
|
|
#define UART_MCRVAL (UART_MCR_DTR | \
|
|
|
|
UART_MCR_RTS) /* RTS/DTR */
|
2014-09-04 22:27:34 +00:00
|
|
|
|
2019-09-25 14:11:14 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(DM_SERIAL)
|
2010-04-23 14:05:46 +00:00
|
|
|
#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
|
2011-10-15 19:14:09 +00:00
|
|
|
#define serial_out(x, y) outb(x, (ulong)y)
|
|
|
|
#define serial_in(y) inb((ulong)y)
|
2011-09-01 22:47:14 +00:00
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
|
2011-10-15 19:14:09 +00:00
|
|
|
#define serial_out(x, y) out_be32(y, x)
|
|
|
|
#define serial_in(y) in_be32(y)
|
2011-09-01 22:47:14 +00:00
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
|
2011-10-15 19:14:09 +00:00
|
|
|
#define serial_out(x, y) out_le32(y, x)
|
|
|
|
#define serial_in(y) in_le32(y)
|
2010-04-23 14:05:46 +00:00
|
|
|
#else
|
2011-10-15 19:14:09 +00:00
|
|
|
#define serial_out(x, y) writeb(x, y)
|
|
|
|
#define serial_in(y) readb(y)
|
2010-04-23 14:05:46 +00:00
|
|
|
#endif
|
2014-09-04 22:27:34 +00:00
|
|
|
#endif /* !CONFIG_DM_SERIAL */
|
2002-04-01 14:29:03 +00:00
|
|
|
|
2014-07-15 21:59:25 +00:00
|
|
|
#if defined(CONFIG_SOC_KEYSTONE)
|
2014-04-04 17:16:53 +00:00
|
|
|
#define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0
|
|
|
|
#define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0))
|
2014-04-09 19:38:46 +00:00
|
|
|
#undef UART_MCRVAL
|
|
|
|
#ifdef CONFIG_SERIAL_HW_FLOW_CONTROL
|
|
|
|
#define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE)
|
|
|
|
#else
|
|
|
|
#define UART_MCRVAL (UART_MCR_RTS)
|
|
|
|
#endif
|
2014-04-04 17:16:53 +00:00
|
|
|
#endif
|
|
|
|
|
2010-10-27 16:28:31 +00:00
|
|
|
#ifndef CONFIG_SYS_NS16550_IER
|
|
|
|
#define CONFIG_SYS_NS16550_IER 0x00
|
|
|
|
#endif /* CONFIG_SYS_NS16550_IER */
|
|
|
|
|
2015-02-28 05:06:26 +00:00
|
|
|
static inline void serial_out_shift(void *addr, int shift, int value)
|
2015-01-27 01:27:08 +00:00
|
|
|
{
|
2014-09-04 22:27:34 +00:00
|
|
|
#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
|
2014-10-10 13:49:13 +00:00
|
|
|
outb(value, (ulong)addr);
|
2018-02-15 08:02:26 +00:00
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
|
2014-09-04 22:27:34 +00:00
|
|
|
out_le32(addr, value);
|
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
|
|
|
|
out_be32(addr, value);
|
2015-05-12 20:55:02 +00:00
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32)
|
|
|
|
writel(value, addr);
|
2014-09-04 22:27:34 +00:00
|
|
|
#elif defined(CONFIG_SYS_BIG_ENDIAN)
|
2015-01-27 01:27:08 +00:00
|
|
|
writeb(value, addr + (1 << shift) - 1);
|
2014-09-04 22:27:34 +00:00
|
|
|
#else
|
|
|
|
writeb(value, addr);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-02-28 05:06:26 +00:00
|
|
|
static inline int serial_in_shift(void *addr, int shift)
|
2014-09-04 22:27:34 +00:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
|
2014-10-10 13:49:13 +00:00
|
|
|
return inb((ulong)addr);
|
2018-02-15 08:02:26 +00:00
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
|
2014-09-04 22:27:34 +00:00
|
|
|
return in_le32(addr);
|
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
|
|
|
|
return in_be32(addr);
|
2015-05-12 20:55:02 +00:00
|
|
|
#elif defined(CONFIG_SYS_NS16550_MEM32)
|
|
|
|
return readl(addr);
|
2014-09-04 22:27:34 +00:00
|
|
|
#elif defined(CONFIG_SYS_BIG_ENDIAN)
|
2015-02-28 07:55:36 +00:00
|
|
|
return readb(addr + (1 << shift) - 1);
|
2014-09-04 22:27:34 +00:00
|
|
|
#else
|
|
|
|
return readb(addr);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-09-25 14:11:14 +00:00
|
|
|
#if CONFIG_IS_ENABLED(DM_SERIAL)
|
2016-05-25 00:13:03 +00:00
|
|
|
|
|
|
|
#ifndef CONFIG_SYS_NS16550_CLK
|
|
|
|
#define CONFIG_SYS_NS16550_CLK 0
|
|
|
|
#endif
|
|
|
|
|
2019-12-20 00:58:18 +00:00
|
|
|
/*
|
|
|
|
* Use this #ifdef for now since many platforms don't define in(), out(),
|
|
|
|
* out_le32(), etc. but we don't have #defines to indicate this.
|
|
|
|
*
|
|
|
|
* TODO(sjg@chromium.org): Add CONFIG options to indicate what I/O is available
|
|
|
|
* on a platform
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_NS16550_DYNAMIC
|
|
|
|
static void serial_out_dynamic(struct ns16550_platdata *plat, u8 *addr,
|
|
|
|
int value)
|
|
|
|
{
|
|
|
|
if (plat->flags & NS16550_FLAG_IO) {
|
|
|
|
outb(value, addr);
|
|
|
|
} else if (plat->reg_width == 4) {
|
|
|
|
if (plat->flags & NS16550_FLAG_ENDIAN) {
|
|
|
|
if (plat->flags & NS16550_FLAG_BE)
|
|
|
|
out_be32(addr, value);
|
|
|
|
else
|
|
|
|
out_le32(addr, value);
|
|
|
|
} else {
|
|
|
|
writel(value, addr);
|
|
|
|
}
|
|
|
|
} else if (plat->flags & NS16550_FLAG_BE) {
|
|
|
|
writeb(value, addr + (1 << plat->reg_shift) - 1);
|
|
|
|
} else {
|
|
|
|
writeb(value, addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int serial_in_dynamic(struct ns16550_platdata *plat, u8 *addr)
|
|
|
|
{
|
|
|
|
if (plat->flags & NS16550_FLAG_IO) {
|
|
|
|
return inb(addr);
|
|
|
|
} else if (plat->reg_width == 4) {
|
|
|
|
if (plat->flags & NS16550_FLAG_ENDIAN) {
|
|
|
|
if (plat->flags & NS16550_FLAG_BE)
|
|
|
|
return in_be32(addr);
|
|
|
|
else
|
|
|
|
return in_le32(addr);
|
|
|
|
} else {
|
|
|
|
return readl(addr);
|
|
|
|
}
|
|
|
|
} else if (plat->flags & NS16550_FLAG_BE) {
|
|
|
|
return readb(addr + (1 << plat->reg_shift) - 1);
|
|
|
|
} else {
|
|
|
|
return readb(addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void serial_out_dynamic(struct ns16550_platdata *plat, u8 *addr,
|
|
|
|
int value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int serial_in_dynamic(struct ns16550_platdata *plat, u8 *addr)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_NS16550_DYNAMIC */
|
|
|
|
|
2015-01-27 01:27:08 +00:00
|
|
|
static void ns16550_writeb(NS16550_t port, int offset, int value)
|
|
|
|
{
|
|
|
|
struct ns16550_platdata *plat = port->plat;
|
|
|
|
unsigned char *addr;
|
|
|
|
|
|
|
|
offset *= 1 << plat->reg_shift;
|
2019-12-20 00:58:18 +00:00
|
|
|
addr = (unsigned char *)plat->base + offset + plat->reg_offset;
|
2016-05-17 06:43:26 +00:00
|
|
|
|
2019-12-20 00:58:18 +00:00
|
|
|
if (IS_ENABLED(CONFIG_NS16550_DYNAMIC))
|
|
|
|
serial_out_dynamic(plat, addr, value);
|
|
|
|
else
|
|
|
|
serial_out_shift(addr, plat->reg_shift, value);
|
2015-01-27 01:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ns16550_readb(NS16550_t port, int offset)
|
|
|
|
{
|
|
|
|
struct ns16550_platdata *plat = port->plat;
|
|
|
|
unsigned char *addr;
|
|
|
|
|
|
|
|
offset *= 1 << plat->reg_shift;
|
2019-12-20 00:58:18 +00:00
|
|
|
addr = (unsigned char *)plat->base + offset + plat->reg_offset;
|
2015-01-27 01:27:08 +00:00
|
|
|
|
2019-12-20 00:58:18 +00:00
|
|
|
if (IS_ENABLED(CONFIG_NS16550_DYNAMIC))
|
|
|
|
return serial_in_dynamic(plat, addr);
|
|
|
|
else
|
|
|
|
return serial_in_shift(addr, plat->reg_shift);
|
2015-01-27 01:27:08 +00:00
|
|
|
}
|
|
|
|
|
2016-12-01 01:06:29 +00:00
|
|
|
static u32 ns16550_getfcr(NS16550_t port)
|
|
|
|
{
|
|
|
|
struct ns16550_platdata *plat = port->plat;
|
|
|
|
|
|
|
|
return plat->fcr;
|
|
|
|
}
|
|
|
|
|
2014-09-04 22:27:34 +00:00
|
|
|
/* We can clean these up once everything is moved to driver model */
|
|
|
|
#define serial_out(value, addr) \
|
2015-02-28 05:06:26 +00:00
|
|
|
ns16550_writeb(com_port, \
|
|
|
|
(unsigned char *)addr - (unsigned char *)com_port, value)
|
2014-09-04 22:27:34 +00:00
|
|
|
#define serial_in(addr) \
|
2015-02-28 05:06:26 +00:00
|
|
|
ns16550_readb(com_port, \
|
|
|
|
(unsigned char *)addr - (unsigned char *)com_port)
|
2016-12-01 01:06:29 +00:00
|
|
|
#else
|
|
|
|
static u32 ns16550_getfcr(NS16550_t port)
|
|
|
|
{
|
2017-01-18 07:05:49 +00:00
|
|
|
return UART_FCR_DEFVAL;
|
2016-12-01 01:06:29 +00:00
|
|
|
}
|
2014-09-04 22:27:34 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-25 00:13:16 +00:00
|
|
|
int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
|
2014-09-04 22:27:32 +00:00
|
|
|
{
|
|
|
|
const unsigned int mode_x_div = 16;
|
|
|
|
|
2015-01-27 01:27:09 +00:00
|
|
|
return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
|
|
|
|
}
|
|
|
|
|
2014-09-04 22:27:33 +00:00
|
|
|
static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
|
|
|
|
{
|
2018-11-02 20:28:08 +00:00
|
|
|
/* to keep serial format, read lcr before writing BKSE */
|
|
|
|
int lcr_val = serial_in(&com_port->lcr) & ~UART_LCR_BKSE;
|
|
|
|
|
|
|
|
serial_out(UART_LCR_BKSE | lcr_val, &com_port->lcr);
|
2014-09-04 22:27:33 +00:00
|
|
|
serial_out(baud_divisor & 0xff, &com_port->dll);
|
|
|
|
serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
|
2018-11-02 20:28:08 +00:00
|
|
|
serial_out(lcr_val, &com_port->lcr);
|
2014-09-04 22:27:33 +00:00
|
|
|
}
|
|
|
|
|
2011-10-15 19:14:09 +00:00
|
|
|
void NS16550_init(NS16550_t com_port, int baud_divisor)
|
2002-04-01 14:29:03 +00:00
|
|
|
{
|
2014-11-10 19:04:10 +00:00
|
|
|
#if (defined(CONFIG_SPL_BUILD) && \
|
|
|
|
(defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
|
2013-03-29 02:52:36 +00:00
|
|
|
/*
|
2014-11-10 19:04:10 +00:00
|
|
|
* On some OMAP3/OMAP4 devices when UART3 is configured for boot mode
|
|
|
|
* before SPL starts only THRE bit is set. We have to empty the
|
|
|
|
* transmitter before initialization starts.
|
2013-03-29 02:52:36 +00:00
|
|
|
*/
|
|
|
|
if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
|
|
|
|
== UART_LSR_THRE) {
|
2014-09-04 22:27:34 +00:00
|
|
|
if (baud_divisor != -1)
|
|
|
|
NS16550_setbrg(com_port, baud_divisor);
|
2019-12-21 16:25:12 +00:00
|
|
|
else {
|
|
|
|
// Re-use old baud rate divisor to flush transmit reg.
|
|
|
|
const int dll = serial_in(&com_port->dll);
|
|
|
|
const int dlm = serial_in(&com_port->dlm);
|
|
|
|
const int divisor = dll | (dlm << 8);
|
|
|
|
NS16550_setbrg(com_port, divisor);
|
|
|
|
}
|
2013-03-29 02:52:36 +00:00
|
|
|
serial_out(0, &com_port->mdr1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-18 23:19:05 +00:00
|
|
|
while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
|
|
|
|
;
|
|
|
|
|
2010-10-27 16:28:31 +00:00
|
|
|
serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
|
2018-08-27 10:25:24 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_OMAP_SERIAL)
|
2010-04-23 14:05:46 +00:00
|
|
|
serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
|
2003-07-16 21:53:01 +00:00
|
|
|
#endif
|
2018-06-14 10:45:22 +00:00
|
|
|
|
2010-04-23 14:05:46 +00:00
|
|
|
serial_out(UART_MCRVAL, &com_port->mcr);
|
2016-12-01 01:06:29 +00:00
|
|
|
serial_out(ns16550_getfcr(com_port), &com_port->fcr);
|
2018-11-02 20:28:08 +00:00
|
|
|
/* initialize serial config to 8N1 before writing baudrate */
|
|
|
|
serial_out(UART_LCRVAL, &com_port->lcr);
|
2014-09-04 22:27:34 +00:00
|
|
|
if (baud_divisor != -1)
|
|
|
|
NS16550_setbrg(com_port, baud_divisor);
|
2018-08-27 10:25:24 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_SOC_DA8XX) || \
|
|
|
|
defined(CONFIG_OMAP_SERIAL)
|
2011-10-15 19:14:09 +00:00
|
|
|
/* /16 is proper to hit 115200 with 48MHz */
|
|
|
|
serial_out(0, &com_port->mdr1);
|
2017-05-13 02:33:16 +00:00
|
|
|
#endif
|
2014-07-15 21:59:25 +00:00
|
|
|
#if defined(CONFIG_SOC_KEYSTONE)
|
2014-04-04 17:16:53 +00:00
|
|
|
serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
|
|
|
|
#endif
|
2002-04-01 14:29:03 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 22:30:44 +00:00
|
|
|
#ifndef CONFIG_NS16550_MIN_FUNCTIONS
|
2011-10-15 19:14:09 +00:00
|
|
|
void NS16550_reinit(NS16550_t com_port, int baud_divisor)
|
2002-04-01 14:29:03 +00:00
|
|
|
{
|
2010-10-27 16:28:31 +00:00
|
|
|
serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
|
2014-09-04 22:27:33 +00:00
|
|
|
NS16550_setbrg(com_port, 0);
|
2010-04-23 14:05:46 +00:00
|
|
|
serial_out(UART_MCRVAL, &com_port->mcr);
|
2016-12-01 01:06:29 +00:00
|
|
|
serial_out(ns16550_getfcr(com_port), &com_port->fcr);
|
2014-09-04 22:27:33 +00:00
|
|
|
NS16550_setbrg(com_port, baud_divisor);
|
2002-04-01 14:29:03 +00:00
|
|
|
}
|
2009-02-18 22:30:44 +00:00
|
|
|
#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
|
2002-04-01 14:29:03 +00:00
|
|
|
|
2011-10-15 19:14:09 +00:00
|
|
|
void NS16550_putc(NS16550_t com_port, char c)
|
2002-04-01 14:29:03 +00:00
|
|
|
{
|
2011-10-15 19:14:09 +00:00
|
|
|
while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
|
|
|
|
;
|
2010-04-23 14:05:46 +00:00
|
|
|
serial_out(c, &com_port->thr);
|
2010-10-12 07:39:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Call watchdog_reset() upon newline. This is done here in putc
|
|
|
|
* since the environment code uses a single puts() to print the complete
|
|
|
|
* environment upon "printenv". So we can't put this watchdog call
|
|
|
|
* in puts().
|
|
|
|
*/
|
|
|
|
if (c == '\n')
|
|
|
|
WATCHDOG_RESET();
|
2002-04-01 14:29:03 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 22:30:44 +00:00
|
|
|
#ifndef CONFIG_NS16550_MIN_FUNCTIONS
|
2011-10-15 19:14:09 +00:00
|
|
|
char NS16550_getc(NS16550_t com_port)
|
2002-04-01 14:29:03 +00:00
|
|
|
{
|
2010-04-23 14:05:46 +00:00
|
|
|
while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
|
2012-09-15 08:25:19 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
|
2004-03-12 00:14:09 +00:00
|
|
|
extern void usbtty_poll(void);
|
|
|
|
usbtty_poll();
|
|
|
|
#endif
|
2010-02-01 22:34:25 +00:00
|
|
|
WATCHDOG_RESET();
|
2004-03-12 00:14:09 +00:00
|
|
|
}
|
2010-04-23 14:05:46 +00:00
|
|
|
return serial_in(&com_port->rbr);
|
2002-04-01 14:29:03 +00:00
|
|
|
}
|
|
|
|
|
2011-10-15 19:14:09 +00:00
|
|
|
int NS16550_tstc(NS16550_t com_port)
|
2002-04-01 14:29:03 +00:00
|
|
|
{
|
2011-10-15 19:14:09 +00:00
|
|
|
return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
|
2002-04-01 14:29:03 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 22:30:44 +00:00
|
|
|
#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
|
2014-09-04 22:27:34 +00:00
|
|
|
|
2015-01-27 01:27:09 +00:00
|
|
|
#ifdef CONFIG_DEBUG_UART_NS16550
|
|
|
|
|
|
|
|
#include <debug_uart.h>
|
|
|
|
|
2015-10-19 01:51:23 +00:00
|
|
|
static inline void _debug_uart_init(void)
|
2015-01-27 01:27:09 +00:00
|
|
|
{
|
|
|
|
struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
|
|
|
|
int baud_divisor;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We copy the code from above because it is already horribly messy.
|
|
|
|
* Trying to refactor to nicely remove the duplication doesn't seem
|
|
|
|
* feasible. The better fix is to move all users of this driver to
|
|
|
|
* driver model.
|
|
|
|
*/
|
2016-05-25 00:13:16 +00:00
|
|
|
baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
|
|
|
|
CONFIG_BAUDRATE);
|
2015-06-23 21:39:06 +00:00
|
|
|
serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER);
|
|
|
|
serial_dout(&com_port->mcr, UART_MCRVAL);
|
2017-01-18 07:05:49 +00:00
|
|
|
serial_dout(&com_port->fcr, UART_FCR_DEFVAL);
|
2015-06-23 21:39:06 +00:00
|
|
|
|
|
|
|
serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
|
|
|
|
serial_dout(&com_port->dll, baud_divisor & 0xff);
|
|
|
|
serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff);
|
|
|
|
serial_dout(&com_port->lcr, UART_LCRVAL);
|
2015-01-27 01:27:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-09 19:35:31 +00:00
|
|
|
static inline int NS16550_read_baud_divisor(struct NS16550 *com_port)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
|
|
|
|
ret = serial_din(&com_port->dll) & 0xff;
|
|
|
|
ret |= (serial_din(&com_port->dlm) & 0xff) << 8;
|
|
|
|
serial_dout(&com_port->lcr, UART_LCRVAL);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-01-27 01:27:09 +00:00
|
|
|
static inline void _debug_uart_putc(int ch)
|
|
|
|
{
|
|
|
|
struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
|
|
|
|
|
2019-01-09 19:35:31 +00:00
|
|
|
while (!(serial_din(&com_port->lsr) & UART_LSR_THRE)) {
|
|
|
|
#ifdef CONFIG_DEBUG_UART_NS16550_CHECK_ENABLED
|
|
|
|
if (!NS16550_read_baud_divisor(com_port))
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
}
|
2015-06-23 21:39:06 +00:00
|
|
|
serial_dout(&com_port->thr, ch);
|
2015-01-27 01:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG_UART_FUNCS
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-09-25 14:11:14 +00:00
|
|
|
#if CONFIG_IS_ENABLED(DM_SERIAL)
|
2014-09-04 22:27:34 +00:00
|
|
|
static int ns16550_serial_putc(struct udevice *dev, const char ch)
|
|
|
|
{
|
|
|
|
struct NS16550 *const com_port = dev_get_priv(dev);
|
|
|
|
|
|
|
|
if (!(serial_in(&com_port->lsr) & UART_LSR_THRE))
|
|
|
|
return -EAGAIN;
|
|
|
|
serial_out(ch, &com_port->thr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call watchdog_reset() upon newline. This is done here in putc
|
|
|
|
* since the environment code uses a single puts() to print the complete
|
|
|
|
* environment upon "printenv". So we can't put this watchdog call
|
|
|
|
* in puts().
|
|
|
|
*/
|
|
|
|
if (ch == '\n')
|
|
|
|
WATCHDOG_RESET();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ns16550_serial_pending(struct udevice *dev, bool input)
|
|
|
|
{
|
|
|
|
struct NS16550 *const com_port = dev_get_priv(dev);
|
|
|
|
|
|
|
|
if (input)
|
2018-01-15 10:09:49 +00:00
|
|
|
return (serial_in(&com_port->lsr) & UART_LSR_DR) ? 1 : 0;
|
2014-09-04 22:27:34 +00:00
|
|
|
else
|
2018-01-15 10:09:49 +00:00
|
|
|
return (serial_in(&com_port->lsr) & UART_LSR_THRE) ? 0 : 1;
|
2014-09-04 22:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ns16550_serial_getc(struct udevice *dev)
|
|
|
|
{
|
2017-08-16 15:37:15 +00:00
|
|
|
struct NS16550 *const com_port = dev_get_priv(dev);
|
|
|
|
|
|
|
|
if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
|
2014-09-04 22:27:34 +00:00
|
|
|
return -EAGAIN;
|
|
|
|
|
2017-08-16 15:37:15 +00:00
|
|
|
return serial_in(&com_port->rbr);
|
2014-09-04 22:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ns16550_serial_setbrg(struct udevice *dev, int baudrate)
|
|
|
|
{
|
|
|
|
struct NS16550 *const com_port = dev_get_priv(dev);
|
|
|
|
struct ns16550_platdata *plat = com_port->plat;
|
|
|
|
int clock_divisor;
|
|
|
|
|
|
|
|
clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate);
|
|
|
|
|
|
|
|
NS16550_setbrg(com_port, clock_divisor);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-02 20:28:08 +00:00
|
|
|
static int ns16550_serial_setconfig(struct udevice *dev, uint serial_config)
|
|
|
|
{
|
|
|
|
struct NS16550 *const com_port = dev_get_priv(dev);
|
|
|
|
int lcr_val = UART_LCR_WLS_8;
|
|
|
|
uint parity = SERIAL_GET_PARITY(serial_config);
|
|
|
|
uint bits = SERIAL_GET_BITS(serial_config);
|
|
|
|
uint stop = SERIAL_GET_STOP(serial_config);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* only parity config is implemented, check if other serial settings
|
|
|
|
* are the default one.
|
|
|
|
*/
|
|
|
|
if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP)
|
|
|
|
return -ENOTSUPP; /* not supported in driver*/
|
|
|
|
|
|
|
|
switch (parity) {
|
|
|
|
case SERIAL_PAR_NONE:
|
|
|
|
/* no bits to add */
|
|
|
|
break;
|
|
|
|
case SERIAL_PAR_ODD:
|
|
|
|
lcr_val |= UART_LCR_PEN;
|
|
|
|
break;
|
|
|
|
case SERIAL_PAR_EVEN:
|
|
|
|
lcr_val |= UART_LCR_PEN | UART_LCR_EPS;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENOTSUPP; /* not supported in driver*/
|
|
|
|
}
|
|
|
|
|
|
|
|
serial_out(lcr_val, &com_port->lcr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-11-20 21:52:36 +00:00
|
|
|
static int ns16550_serial_getinfo(struct udevice *dev,
|
|
|
|
struct serial_device_info *info)
|
|
|
|
{
|
|
|
|
struct NS16550 *const com_port = dev_get_priv(dev);
|
|
|
|
struct ns16550_platdata *plat = com_port->plat;
|
|
|
|
|
|
|
|
info->type = SERIAL_CHIP_16550_COMPATIBLE;
|
|
|
|
#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
|
|
|
|
info->addr_space = SERIAL_ADDRESS_SPACE_IO;
|
|
|
|
#else
|
|
|
|
info->addr_space = SERIAL_ADDRESS_SPACE_MEMORY;
|
|
|
|
#endif
|
|
|
|
info->addr = plat->base;
|
|
|
|
info->reg_width = plat->reg_width;
|
|
|
|
info->reg_shift = plat->reg_shift;
|
|
|
|
info->reg_offset = plat->reg_offset;
|
2020-02-27 15:21:55 +00:00
|
|
|
info->clock = plat->clock;
|
|
|
|
|
2018-11-20 21:52:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-04 01:35:32 +00:00
|
|
|
static int ns16550_serial_assign_base(struct ns16550_platdata *plat, ulong base)
|
2020-03-02 13:41:14 +00:00
|
|
|
{
|
2020-04-04 01:35:32 +00:00
|
|
|
if (base == FDT_ADDR_T_NONE)
|
2020-03-02 13:41:14 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
|
2020-04-04 01:35:32 +00:00
|
|
|
plat->base = base;
|
2020-03-02 13:41:14 +00:00
|
|
|
#else
|
2020-04-04 01:35:32 +00:00
|
|
|
plat->base = (unsigned long)map_physmem(base, 0, MAP_NOCACHE);
|
2020-03-02 13:41:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-04 22:27:34 +00:00
|
|
|
int ns16550_serial_probe(struct udevice *dev)
|
|
|
|
{
|
2020-04-04 01:35:32 +00:00
|
|
|
struct ns16550_platdata *plat = dev->platdata;
|
2014-09-04 22:27:34 +00:00
|
|
|
struct NS16550 *const com_port = dev_get_priv(dev);
|
2018-06-14 10:45:22 +00:00
|
|
|
struct reset_ctl_bulk reset_bulk;
|
2020-04-04 01:35:32 +00:00
|
|
|
fdt_addr_t addr;
|
2018-06-14 10:45:22 +00:00
|
|
|
int ret;
|
|
|
|
|
2020-04-04 01:35:32 +00:00
|
|
|
/*
|
|
|
|
* If we are on PCI bus, either directly attached to a PCI root port,
|
|
|
|
* or via a PCI bridge, assign platdata->base before probing hardware.
|
|
|
|
*/
|
|
|
|
if (device_is_on_pci_bus(dev)) {
|
|
|
|
addr = devfdt_get_addr_pci(dev);
|
|
|
|
ret = ns16550_serial_assign_base(plat, addr);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2020-03-02 13:41:14 +00:00
|
|
|
|
2018-06-14 10:45:22 +00:00
|
|
|
ret = reset_get_bulk(dev, &reset_bulk);
|
|
|
|
if (!ret)
|
|
|
|
reset_deassert_bulk(&reset_bulk);
|
2014-09-04 22:27:34 +00:00
|
|
|
|
2014-10-23 03:37:05 +00:00
|
|
|
com_port->plat = dev_get_platdata(dev);
|
2014-09-04 22:27:34 +00:00
|
|
|
NS16550_init(com_port, -1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-12-01 01:06:30 +00:00
|
|
|
#if CONFIG_IS_ENABLED(OF_CONTROL)
|
|
|
|
enum {
|
|
|
|
PORT_NS16550 = 0,
|
2016-12-01 01:06:31 +00:00
|
|
|
PORT_JZ4780,
|
2016-12-01 01:06:30 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-07-04 17:58:23 +00:00
|
|
|
#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
|
2014-09-04 22:27:34 +00:00
|
|
|
int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ns16550_platdata *plat = dev->platdata;
|
2016-12-01 01:06:31 +00:00
|
|
|
const u32 port_type = dev_get_driver_data(dev);
|
2020-04-04 01:35:32 +00:00
|
|
|
fdt_addr_t addr;
|
2016-09-26 11:45:27 +00:00
|
|
|
struct clk clk;
|
|
|
|
int err;
|
2014-09-04 22:27:34 +00:00
|
|
|
|
2020-04-04 01:35:32 +00:00
|
|
|
addr = dev_read_addr(dev);
|
|
|
|
err = ns16550_serial_assign_base(plat, addr);
|
|
|
|
if (err && !device_is_on_pci_bus(dev))
|
|
|
|
return err;
|
|
|
|
|
2017-06-07 16:46:02 +00:00
|
|
|
plat->reg_offset = dev_read_u32_default(dev, "reg-offset", 0);
|
|
|
|
plat->reg_shift = dev_read_u32_default(dev, "reg-shift", 0);
|
2018-11-20 21:52:35 +00:00
|
|
|
plat->reg_width = dev_read_u32_default(dev, "reg-io-width", 1);
|
2016-09-08 06:47:29 +00:00
|
|
|
|
|
|
|
err = clk_get_by_index(dev, 0, &clk);
|
|
|
|
if (!err) {
|
|
|
|
err = clk_get_rate(&clk);
|
|
|
|
if (!IS_ERR_VALUE(err))
|
|
|
|
plat->clock = err;
|
2016-09-30 08:37:00 +00:00
|
|
|
} else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) {
|
2016-09-08 06:47:29 +00:00
|
|
|
debug("ns16550 failed to get clock\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!plat->clock)
|
2017-06-07 16:46:02 +00:00
|
|
|
plat->clock = dev_read_u32_default(dev, "clock-frequency",
|
|
|
|
CONFIG_SYS_NS16550_CLK);
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
if (!plat->clock) {
|
|
|
|
debug("ns16550 clock not defined\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2014-09-04 22:27:34 +00:00
|
|
|
|
2017-01-18 07:05:49 +00:00
|
|
|
plat->fcr = UART_FCR_DEFVAL;
|
2016-12-01 01:06:31 +00:00
|
|
|
if (port_type == PORT_JZ4780)
|
|
|
|
plat->fcr |= UART_FCR_UME;
|
2016-12-01 01:06:29 +00:00
|
|
|
|
2014-09-04 22:27:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-10-23 03:37:05 +00:00
|
|
|
#endif
|
2014-09-04 22:27:34 +00:00
|
|
|
|
|
|
|
const struct dm_serial_ops ns16550_serial_ops = {
|
|
|
|
.putc = ns16550_serial_putc,
|
|
|
|
.pending = ns16550_serial_pending,
|
|
|
|
.getc = ns16550_serial_getc,
|
|
|
|
.setbrg = ns16550_serial_setbrg,
|
2018-11-20 21:52:36 +00:00
|
|
|
.setconfig = ns16550_serial_setconfig,
|
|
|
|
.getinfo = ns16550_serial_getinfo,
|
2014-09-04 22:27:34 +00:00
|
|
|
};
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
|
2017-03-27 19:54:19 +00:00
|
|
|
#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
|
2015-12-14 12:45:09 +00:00
|
|
|
/*
|
|
|
|
* Please consider existing compatible strings before adding a new
|
|
|
|
* one to keep this table compact. Or you may add a generic "ns16550"
|
|
|
|
* compatible string to your dts.
|
|
|
|
*/
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
static const struct udevice_id ns16550_serial_ids[] = {
|
2016-12-01 01:06:30 +00:00
|
|
|
{ .compatible = "ns16550", .data = PORT_NS16550 },
|
|
|
|
{ .compatible = "ns16550a", .data = PORT_NS16550 },
|
2016-12-01 01:06:31 +00:00
|
|
|
{ .compatible = "ingenic,jz4780-uart", .data = PORT_JZ4780 },
|
2016-12-01 01:06:30 +00:00
|
|
|
{ .compatible = "nvidia,tegra20-uart", .data = PORT_NS16550 },
|
|
|
|
{ .compatible = "snps,dw-apb-uart", .data = PORT_NS16550 },
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
{}
|
|
|
|
};
|
2017-03-27 19:54:19 +00:00
|
|
|
#endif /* OF_CONTROL && !OF_PLATDATA */
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
|
2015-12-14 04:36:59 +00:00
|
|
|
#if CONFIG_IS_ENABLED(SERIAL_PRESENT)
|
2017-03-27 19:54:19 +00:00
|
|
|
|
|
|
|
/* TODO(sjg@chromium.org): Integrate this into a macro like CONFIG_IS_ENABLED */
|
|
|
|
#if !defined(CONFIG_TPL_BUILD) || defined(CONFIG_TPL_DM_SERIAL)
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
U_BOOT_DRIVER(ns16550_serial) = {
|
|
|
|
.name = "ns16550_serial",
|
|
|
|
.id = UCLASS_SERIAL,
|
2017-03-27 19:54:19 +00:00
|
|
|
#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
.of_match = ns16550_serial_ids,
|
|
|
|
.ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
|
|
|
|
.platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
|
|
|
|
#endif
|
|
|
|
.priv_auto_alloc_size = sizeof(struct NS16550),
|
|
|
|
.probe = ns16550_serial_probe,
|
|
|
|
.ops = &ns16550_serial_ops,
|
2018-10-24 13:36:36 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(OF_CONTROL)
|
2015-12-04 15:58:38 +00:00
|
|
|
.flags = DM_FLAG_PRE_RELOC,
|
2018-10-24 13:36:36 +00:00
|
|
|
#endif
|
ns16550: add generic binding to unify the drivers
Add generic binding to unify ns16550 drivers. There are
several drivers using almost the same code, such as serial_dw,
serial_keystone, serial_omap, serial_ppc, serial_rockchip,
serial_tegra.c, and serial_x86. But each is platform specific.
The key difference between these drivers is the way to get
input clock frequency. With this unified approach, fixed clock
frequency should be extracted from "clock-frequency" property of
device tree blob. If this property is not available, the macro
CONFIG_SYS_NS16550_CLK will be used. It can be a constant or a
function to get clock, eg, get_serial_clock().
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
2015-11-19 13:48:05 +00:00
|
|
|
};
|
2015-12-14 04:36:59 +00:00
|
|
|
#endif
|
2017-03-27 19:54:19 +00:00
|
|
|
#endif /* SERIAL_PRESENT */
|
|
|
|
|
2014-09-04 22:27:34 +00:00
|
|
|
#endif /* CONFIG_DM_SERIAL */
|