2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2004-04-18 21:13:41 +00:00
|
|
|
/*
|
2015-12-01 13:24:20 +00:00
|
|
|
* (C) Copyright 2008 - 2015 Michal Simek <monstr@monstr.eu>
|
2008-07-11 08:10:31 +00:00
|
|
|
* Clean driver and add xilinx constant from header file
|
2004-04-18 21:13:41 +00:00
|
|
|
*
|
2008-07-11 08:10:31 +00:00
|
|
|
* (C) Copyright 2004 Atmark Techno, Inc.
|
2004-04-18 21:13:41 +00:00
|
|
|
* Yasushi SHOJI <yashi@atmark-techno.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2011-09-25 21:03:08 +00:00
|
|
|
#include <common.h>
|
2015-12-01 13:24:20 +00:00
|
|
|
#include <dm.h>
|
2008-07-11 08:10:31 +00:00
|
|
|
#include <asm/io.h>
|
2020-05-10 17:40:13 +00:00
|
|
|
#include <linux/bitops.h>
|
2011-09-25 21:03:08 +00:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <serial.h>
|
2004-04-18 21:13:41 +00:00
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
#define SR_TX_FIFO_FULL BIT(3) /* transmit FIFO full */
|
|
|
|
#define SR_TX_FIFO_EMPTY BIT(2) /* transmit FIFO empty */
|
|
|
|
#define SR_RX_FIFO_VALID_DATA BIT(0) /* data in receive FIFO */
|
|
|
|
#define SR_RX_FIFO_FULL BIT(1) /* receive FIFO full */
|
2004-04-18 21:13:41 +00:00
|
|
|
|
2014-01-21 06:29:47 +00:00
|
|
|
#define ULITE_CONTROL_RST_TX 0x01
|
|
|
|
#define ULITE_CONTROL_RST_RX 0x02
|
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
static bool little_endian;
|
|
|
|
|
2011-09-25 21:03:08 +00:00
|
|
|
struct uartlite {
|
|
|
|
unsigned int rx_fifo;
|
|
|
|
unsigned int tx_fifo;
|
|
|
|
unsigned int status;
|
2014-01-21 06:29:47 +00:00
|
|
|
unsigned int control;
|
2011-09-25 21:03:08 +00:00
|
|
|
};
|
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
struct uartlite_platdata {
|
|
|
|
struct uartlite *regs;
|
2011-09-25 21:03:08 +00:00
|
|
|
};
|
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
static u32 uart_in32(void __iomem *addr)
|
|
|
|
{
|
|
|
|
if (little_endian)
|
|
|
|
return in_le32(addr);
|
|
|
|
else
|
|
|
|
return in_be32(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void uart_out32(void __iomem *addr, u32 val)
|
|
|
|
{
|
|
|
|
if (little_endian)
|
|
|
|
out_le32(addr, val);
|
|
|
|
else
|
|
|
|
out_be32(addr, val);
|
|
|
|
}
|
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
static int uartlite_serial_putc(struct udevice *dev, const char ch)
|
2011-09-25 21:03:08 +00:00
|
|
|
{
|
2015-12-01 13:24:20 +00:00
|
|
|
struct uartlite_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct uartlite *regs = plat->regs;
|
2011-09-25 21:03:08 +00:00
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
if (uart_in32(®s->status) & SR_TX_FIFO_FULL)
|
2015-12-01 13:24:20 +00:00
|
|
|
return -EAGAIN;
|
2011-09-25 21:03:08 +00:00
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
uart_out32(®s->tx_fifo, ch & 0xff);
|
2011-09-25 21:03:08 +00:00
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
return 0;
|
2011-09-25 21:03:08 +00:00
|
|
|
}
|
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
static int uartlite_serial_getc(struct udevice *dev)
|
2011-09-25 21:03:08 +00:00
|
|
|
{
|
2015-12-01 13:24:20 +00:00
|
|
|
struct uartlite_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct uartlite *regs = plat->regs;
|
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
if (!(uart_in32(®s->status) & SR_RX_FIFO_VALID_DATA))
|
2015-12-01 13:24:20 +00:00
|
|
|
return -EAGAIN;
|
2011-09-25 21:03:08 +00:00
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
return uart_in32(®s->rx_fifo) & 0xff;
|
2011-09-25 21:03:08 +00:00
|
|
|
}
|
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
static int uartlite_serial_pending(struct udevice *dev, bool input)
|
2011-09-25 21:03:08 +00:00
|
|
|
{
|
2015-12-01 13:24:20 +00:00
|
|
|
struct uartlite_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct uartlite *regs = plat->regs;
|
2004-04-18 21:13:41 +00:00
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
if (input)
|
2020-08-14 09:02:15 +00:00
|
|
|
return uart_in32(®s->status) & SR_RX_FIFO_VALID_DATA;
|
2015-12-01 13:24:20 +00:00
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
return !(uart_in32(®s->status) & SR_TX_FIFO_EMPTY);
|
2011-09-25 21:03:08 +00:00
|
|
|
}
|
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
static int uartlite_serial_probe(struct udevice *dev)
|
2012-07-02 08:32:18 +00:00
|
|
|
{
|
2015-12-01 13:24:20 +00:00
|
|
|
struct uartlite_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct uartlite *regs = plat->regs;
|
2020-08-14 09:02:15 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
uart_out32(®s->control, 0);
|
|
|
|
uart_out32(®s->control, ULITE_CONTROL_RST_RX | ULITE_CONTROL_RST_TX);
|
|
|
|
ret = uart_in32(®s->status);
|
|
|
|
/* Endianness detection */
|
|
|
|
if ((ret & SR_TX_FIFO_EMPTY) != SR_TX_FIFO_EMPTY) {
|
|
|
|
little_endian = true;
|
|
|
|
uart_out32(®s->control, ULITE_CONTROL_RST_RX |
|
|
|
|
ULITE_CONTROL_RST_TX);
|
|
|
|
}
|
2012-07-02 08:32:18 +00:00
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
return 0;
|
2012-09-09 16:48:28 +00:00
|
|
|
}
|
2011-09-25 21:03:08 +00:00
|
|
|
|
2015-12-01 13:24:20 +00:00
|
|
|
static int uartlite_serial_ofdata_to_platdata(struct udevice *dev)
|
2011-09-25 21:03:08 +00:00
|
|
|
{
|
2015-12-01 13:24:20 +00:00
|
|
|
struct uartlite_platdata *plat = dev_get_platdata(dev);
|
2012-09-12 17:45:58 +00:00
|
|
|
|
2020-07-17 05:36:46 +00:00
|
|
|
plat->regs = dev_read_addr_ptr(dev);
|
2015-12-01 13:24:20 +00:00
|
|
|
|
|
|
|
return 0;
|
2012-09-12 17:45:58 +00:00
|
|
|
}
|
2015-12-01 13:24:20 +00:00
|
|
|
|
|
|
|
static const struct dm_serial_ops uartlite_serial_ops = {
|
|
|
|
.putc = uartlite_serial_putc,
|
|
|
|
.pending = uartlite_serial_pending,
|
|
|
|
.getc = uartlite_serial_getc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct udevice_id uartlite_serial_ids[] = {
|
|
|
|
{ .compatible = "xlnx,opb-uartlite-1.00.b", },
|
|
|
|
{ .compatible = "xlnx,xps-uartlite-1.00.a" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(serial_uartlite) = {
|
|
|
|
.name = "serial_uartlite",
|
|
|
|
.id = UCLASS_SERIAL,
|
|
|
|
.of_match = uartlite_serial_ids,
|
|
|
|
.ofdata_to_platdata = uartlite_serial_ofdata_to_platdata,
|
|
|
|
.platdata_auto_alloc_size = sizeof(struct uartlite_platdata),
|
|
|
|
.probe = uartlite_serial_probe,
|
|
|
|
.ops = &uartlite_serial_ops,
|
|
|
|
};
|
2015-12-14 15:55:10 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_UART_UARTLITE
|
|
|
|
|
|
|
|
#include <debug_uart.h>
|
|
|
|
|
|
|
|
static inline void _debug_uart_init(void)
|
|
|
|
{
|
|
|
|
struct uartlite *regs = (struct uartlite *)CONFIG_DEBUG_UART_BASE;
|
2020-08-14 09:02:15 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
uart_out32(®s->control, 0);
|
|
|
|
uart_out32(®s->control, ULITE_CONTROL_RST_RX | ULITE_CONTROL_RST_TX);
|
|
|
|
uart_in32(®s->status);
|
|
|
|
/* Endianness detection */
|
|
|
|
if ((ret & SR_TX_FIFO_EMPTY) != SR_TX_FIFO_EMPTY) {
|
|
|
|
little_endian = true;
|
|
|
|
uart_out32(®s->control, ULITE_CONTROL_RST_RX |
|
|
|
|
ULITE_CONTROL_RST_TX);
|
|
|
|
}
|
2015-12-14 15:55:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void _debug_uart_putc(int ch)
|
|
|
|
{
|
|
|
|
struct uartlite *regs = (struct uartlite *)CONFIG_DEBUG_UART_BASE;
|
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
while (uart_in32(®s->status) & SR_TX_FIFO_FULL)
|
2015-12-14 15:55:10 +00:00
|
|
|
;
|
|
|
|
|
2020-08-14 09:02:15 +00:00
|
|
|
uart_out32(®s->tx_fifo, ch & 0xff);
|
2015-12-14 15:55:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG_UART_FUNCS
|
|
|
|
#endif
|