2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
2011-08-28 01:35:13 +00:00
|
|
|
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
|
|
|
|
*
|
2002-11-03 00:24:07 +00:00
|
|
|
* (C) Copyright 2002
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Alex Zuepke <azu@sysgo.de>
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
|
|
|
|
*
|
2016-11-14 20:40:26 +00:00
|
|
|
* Modified to add driver model (DM) support
|
|
|
|
* (C) Copyright 2016 Marcel Ziswiler <marcel.ziswiler@toradex.com>
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-12-28 17:45:07 +00:00
|
|
|
#include <hang.h>
|
2002-11-03 00:24:07 +00:00
|
|
|
#include <asm/arch/pxa-regs.h>
|
2011-08-28 01:35:13 +00:00
|
|
|
#include <asm/arch/regs-uart.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2010-09-09 07:50:39 +00:00
|
|
|
#include <asm/io.h>
|
2016-11-14 20:40:26 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <dm/platform_data/serial_pxa.h>
|
2012-09-12 10:26:30 +00:00
|
|
|
#include <linux/compiler.h>
|
2015-08-16 02:16:29 +00:00
|
|
|
#include <serial.h>
|
|
|
|
#include <watchdog.h>
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2006-03-31 16:32:53 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2016-11-14 20:40:26 +00:00
|
|
|
static uint32_t pxa_uart_get_baud_divider(int baudrate)
|
2011-08-28 01:35:13 +00:00
|
|
|
{
|
2016-11-14 20:40:26 +00:00
|
|
|
return 921600 / baudrate;
|
2011-08-28 01:35:13 +00:00
|
|
|
}
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2012-09-12 10:59:42 +00:00
|
|
|
static void pxa_uart_toggle_clock(uint32_t uart_index, int enable)
|
2011-08-28 01:35:13 +00:00
|
|
|
{
|
|
|
|
uint32_t clk_reg, clk_offset, reg;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
clk_reg = UART_CLK_REG;
|
|
|
|
clk_offset = UART_CLK_BASE << uart_index;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
reg = readl(clk_reg);
|
2003-04-05 00:53:31 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
if (enable)
|
|
|
|
reg |= clk_offset;
|
|
|
|
else
|
|
|
|
reg &= ~clk_offset;
|
2003-04-05 00:53:31 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
writel(reg, clk_reg);
|
|
|
|
}
|
2003-04-05 00:53:31 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
/*
|
|
|
|
* Enable clock and set baud rate, parity etc.
|
|
|
|
*/
|
2016-11-14 20:40:26 +00:00
|
|
|
void pxa_setbrg_common(struct pxa_uart_regs *uart_regs, int port, int baudrate)
|
2011-08-28 01:35:13 +00:00
|
|
|
{
|
2016-11-14 20:40:26 +00:00
|
|
|
uint32_t divider = pxa_uart_get_baud_divider(baudrate);
|
2011-08-28 01:35:13 +00:00
|
|
|
if (!divider)
|
|
|
|
hang();
|
2007-08-30 20:57:04 +00:00
|
|
|
|
2003-09-18 09:21:33 +00:00
|
|
|
|
2016-11-14 20:40:26 +00:00
|
|
|
pxa_uart_toggle_clock(port, 1);
|
2003-09-18 09:21:33 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
/* Disable interrupts and FIFOs */
|
|
|
|
writel(0, &uart_regs->ier);
|
|
|
|
writel(0, &uart_regs->fcr);
|
2003-09-18 09:21:33 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
/* Set baud rate */
|
|
|
|
writel(LCR_WLS0 | LCR_WLS1 | LCR_DLAB, &uart_regs->lcr);
|
|
|
|
writel(divider & 0xff, &uart_regs->dll);
|
|
|
|
writel(divider >> 8, &uart_regs->dlh);
|
|
|
|
writel(LCR_WLS0 | LCR_WLS1, &uart_regs->lcr);
|
2003-09-18 09:21:33 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
/* Enable UART */
|
|
|
|
writel(IER_UUE, &uart_regs->ier);
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:40:26 +00:00
|
|
|
#ifndef CONFIG_DM_SERIAL
|
|
|
|
static struct pxa_uart_regs *pxa_uart_index_to_regs(uint32_t uart_index)
|
|
|
|
{
|
|
|
|
switch (uart_index) {
|
|
|
|
case FFUART_INDEX: return (struct pxa_uart_regs *)FFUART_BASE;
|
|
|
|
case BTUART_INDEX: return (struct pxa_uart_regs *)BTUART_BASE;
|
|
|
|
case STUART_INDEX: return (struct pxa_uart_regs *)STUART_BASE;
|
|
|
|
case HWUART_INDEX: return (struct pxa_uart_regs *)HWUART_BASE;
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable clock and set baud rate, parity etc.
|
|
|
|
*/
|
|
|
|
void pxa_setbrg_dev(uint32_t uart_index)
|
|
|
|
{
|
|
|
|
struct pxa_uart_regs *uart_regs = pxa_uart_index_to_regs(uart_index);
|
|
|
|
if (!uart_regs)
|
|
|
|
panic("Failed getting UART registers\n");
|
|
|
|
|
|
|
|
pxa_setbrg_common(uart_regs, uart_index, gd->baudrate);
|
|
|
|
}
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* Initialise the serial port with the given baudrate. The settings
|
|
|
|
* are always 8 data bits, no parity, 1 stop bit, no start bits.
|
|
|
|
*/
|
2011-08-28 01:35:13 +00:00
|
|
|
int pxa_init_dev(unsigned int uart_index)
|
2002-11-03 00:24:07 +00:00
|
|
|
{
|
2016-11-14 20:40:26 +00:00
|
|
|
pxa_setbrg_dev(uart_index);
|
2011-08-28 01:35:13 +00:00
|
|
|
return 0;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Output a single byte to the serial port.
|
|
|
|
*/
|
2011-08-28 01:35:13 +00:00
|
|
|
void pxa_putc_dev(unsigned int uart_index, const char c)
|
2007-08-30 20:57:04 +00:00
|
|
|
{
|
2011-08-28 01:35:13 +00:00
|
|
|
struct pxa_uart_regs *uart_regs;
|
|
|
|
|
2016-03-02 03:00:37 +00:00
|
|
|
/* If \n, also do \r */
|
|
|
|
if (c == '\n')
|
|
|
|
pxa_putc_dev(uart_index, '\r');
|
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
uart_regs = pxa_uart_index_to_regs(uart_index);
|
|
|
|
if (!uart_regs)
|
|
|
|
hang();
|
|
|
|
|
|
|
|
while (!(readl(&uart_regs->lsr) & LSR_TEMT))
|
|
|
|
WATCHDOG_RESET();
|
|
|
|
writel(c, &uart_regs->thr);
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a single byte from the serial port. Returns 1 on success, 0
|
|
|
|
* otherwise. When the function is succesfull, the character read is
|
|
|
|
* written into its argument c.
|
|
|
|
*/
|
2011-08-28 01:35:13 +00:00
|
|
|
int pxa_tstc_dev(unsigned int uart_index)
|
2007-08-30 20:57:04 +00:00
|
|
|
{
|
2011-08-28 01:35:13 +00:00
|
|
|
struct pxa_uart_regs *uart_regs;
|
|
|
|
|
|
|
|
uart_regs = pxa_uart_index_to_regs(uart_index);
|
|
|
|
if (!uart_regs)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return readl(&uart_regs->lsr) & LSR_DR;
|
2002-11-03 00:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a single byte from the serial port. Returns 1 on success, 0
|
|
|
|
* otherwise. When the function is succesfull, the character read is
|
|
|
|
* written into its argument c.
|
|
|
|
*/
|
2011-08-28 01:35:13 +00:00
|
|
|
int pxa_getc_dev(unsigned int uart_index)
|
2007-08-30 20:57:04 +00:00
|
|
|
{
|
2011-08-28 01:35:13 +00:00
|
|
|
struct pxa_uart_regs *uart_regs;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
uart_regs = pxa_uart_index_to_regs(uart_index);
|
|
|
|
if (!uart_regs)
|
|
|
|
return -1;
|
2007-08-30 20:57:04 +00:00
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
while (!(readl(&uart_regs->lsr) & LSR_DR))
|
|
|
|
WATCHDOG_RESET();
|
|
|
|
return readl(&uart_regs->rbr) & 0xff;
|
2007-08-30 20:57:04 +00:00
|
|
|
}
|
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
void pxa_puts_dev(unsigned int uart_index, const char *s)
|
2007-08-30 20:57:04 +00:00
|
|
|
{
|
2011-08-28 01:35:13 +00:00
|
|
|
while (*s)
|
|
|
|
pxa_putc_dev(uart_index, *s++);
|
2007-08-30 20:57:04 +00:00
|
|
|
}
|
|
|
|
|
2011-08-28 01:35:13 +00:00
|
|
|
#define pxa_uart(uart, UART) \
|
|
|
|
int uart##_init(void) \
|
|
|
|
{ \
|
|
|
|
return pxa_init_dev(UART##_INDEX); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void uart##_setbrg(void) \
|
|
|
|
{ \
|
|
|
|
return pxa_setbrg_dev(UART##_INDEX); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void uart##_putc(const char c) \
|
|
|
|
{ \
|
|
|
|
return pxa_putc_dev(UART##_INDEX, c); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
void uart##_puts(const char *s) \
|
|
|
|
{ \
|
|
|
|
return pxa_puts_dev(UART##_INDEX, s); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
int uart##_getc(void) \
|
|
|
|
{ \
|
|
|
|
return pxa_getc_dev(UART##_INDEX); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
int uart##_tstc(void) \
|
|
|
|
{ \
|
|
|
|
return pxa_tstc_dev(UART##_INDEX); \
|
|
|
|
} \
|
|
|
|
|
|
|
|
#define pxa_uart_desc(uart) \
|
|
|
|
struct serial_device serial_##uart##_device = \
|
|
|
|
{ \
|
2012-09-09 16:48:28 +00:00
|
|
|
.name = "serial_"#uart, \
|
|
|
|
.start = uart##_init, \
|
|
|
|
.stop = NULL, \
|
|
|
|
.setbrg = uart##_setbrg, \
|
|
|
|
.getc = uart##_getc, \
|
|
|
|
.tstc = uart##_tstc, \
|
|
|
|
.putc = uart##_putc, \
|
|
|
|
.puts = uart##_puts, \
|
2011-08-28 01:35:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define pxa_uart_multi(uart, UART) \
|
|
|
|
pxa_uart(uart, UART) \
|
|
|
|
pxa_uart_desc(uart)
|
|
|
|
|
|
|
|
#if defined(CONFIG_HWUART)
|
|
|
|
pxa_uart_multi(hwuart, HWUART)
|
2007-08-30 20:57:04 +00:00
|
|
|
#endif
|
2011-08-28 01:35:13 +00:00
|
|
|
#if defined(CONFIG_STUART)
|
|
|
|
pxa_uart_multi(stuart, STUART)
|
2007-08-30 20:57:04 +00:00
|
|
|
#endif
|
2011-08-28 01:35:13 +00:00
|
|
|
#if defined(CONFIG_FFUART)
|
|
|
|
pxa_uart_multi(ffuart, FFUART)
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_BTUART)
|
|
|
|
pxa_uart_multi(btuart, BTUART)
|
2007-08-30 20:57:04 +00:00
|
|
|
#endif
|
|
|
|
|
2012-09-12 10:26:30 +00:00
|
|
|
__weak struct serial_device *default_serial_console(void)
|
|
|
|
{
|
|
|
|
#if CONFIG_CONS_INDEX == 1
|
|
|
|
return &serial_hwuart_device;
|
|
|
|
#elif CONFIG_CONS_INDEX == 2
|
|
|
|
return &serial_stuart_device;
|
|
|
|
#elif CONFIG_CONS_INDEX == 3
|
|
|
|
return &serial_ffuart_device;
|
|
|
|
#elif CONFIG_CONS_INDEX == 4
|
|
|
|
return &serial_btuart_device;
|
|
|
|
#else
|
|
|
|
#error "Bad CONFIG_CONS_INDEX."
|
|
|
|
#endif
|
|
|
|
}
|
2012-09-12 11:57:58 +00:00
|
|
|
|
|
|
|
void pxa_serial_initialize(void)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_FFUART)
|
|
|
|
serial_register(&serial_ffuart_device);
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_BTUART)
|
|
|
|
serial_register(&serial_btuart_device);
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_STUART)
|
|
|
|
serial_register(&serial_stuart_device);
|
|
|
|
#endif
|
|
|
|
}
|
2016-11-14 20:40:26 +00:00
|
|
|
#endif /* CONFIG_DM_SERIAL */
|
|
|
|
|
|
|
|
#ifdef CONFIG_DM_SERIAL
|
|
|
|
static int pxa_serial_probe(struct udevice *dev)
|
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct pxa_serial_plat *plat = dev_get_plat(dev);
|
2016-11-14 20:40:26 +00:00
|
|
|
|
|
|
|
pxa_setbrg_common((struct pxa_uart_regs *)plat->base, plat->port,
|
|
|
|
plat->baudrate);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pxa_serial_putc(struct udevice *dev, const char ch)
|
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct pxa_serial_plat *plat = dev_get_plat(dev);
|
2016-11-14 20:40:26 +00:00
|
|
|
struct pxa_uart_regs *uart_regs = (struct pxa_uart_regs *)plat->base;
|
|
|
|
|
|
|
|
/* Wait for last character to go. */
|
|
|
|
if (!(readl(&uart_regs->lsr) & LSR_TEMT))
|
|
|
|
return -EAGAIN;
|
|
|
|
|
|
|
|
writel(ch, &uart_regs->thr);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pxa_serial_getc(struct udevice *dev)
|
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct pxa_serial_plat *plat = dev_get_plat(dev);
|
2016-11-14 20:40:26 +00:00
|
|
|
struct pxa_uart_regs *uart_regs = (struct pxa_uart_regs *)plat->base;
|
|
|
|
|
|
|
|
/* Wait for a character to arrive. */
|
|
|
|
if (!(readl(&uart_regs->lsr) & LSR_DR))
|
|
|
|
return -EAGAIN;
|
|
|
|
|
|
|
|
return readl(&uart_regs->rbr) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pxa_serial_setbrg(struct udevice *dev, int baudrate)
|
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct pxa_serial_plat *plat = dev_get_plat(dev);
|
2016-11-14 20:40:26 +00:00
|
|
|
struct pxa_uart_regs *uart_regs = (struct pxa_uart_regs *)plat->base;
|
|
|
|
int port = plat->port;
|
|
|
|
|
|
|
|
pxa_setbrg_common(uart_regs, port, baudrate);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pxa_serial_pending(struct udevice *dev, bool input)
|
|
|
|
{
|
2020-12-23 02:30:28 +00:00
|
|
|
struct pxa_serial_plat *plat = dev_get_plat(dev);
|
2016-11-14 20:40:26 +00:00
|
|
|
struct pxa_uart_regs *uart_regs = (struct pxa_uart_regs *)plat->base;
|
|
|
|
|
|
|
|
if (input)
|
|
|
|
return readl(&uart_regs->lsr) & LSR_DR ? 1 : 0;
|
|
|
|
else
|
|
|
|
return readl(&uart_regs->lsr) & LSR_TEMT ? 0 : 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct dm_serial_ops pxa_serial_ops = {
|
|
|
|
.putc = pxa_serial_putc,
|
|
|
|
.pending = pxa_serial_pending,
|
|
|
|
.getc = pxa_serial_getc,
|
|
|
|
.setbrg = pxa_serial_setbrg,
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(serial_pxa) = {
|
|
|
|
.name = "serial_pxa",
|
|
|
|
.id = UCLASS_SERIAL,
|
|
|
|
.probe = pxa_serial_probe,
|
|
|
|
.ops = &pxa_serial_ops,
|
|
|
|
.flags = DM_FLAG_PRE_RELOC,
|
|
|
|
};
|
|
|
|
#endif /* CONFIG_DM_SERIAL */
|