mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
serial-arc: switch to DM
Now when all infrastructure in ARC is ready for it let's switch ARC UART to driver model. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Simon Glass <sjg@chromium.org>
This commit is contained in:
@ -14,6 +14,7 @@ config ARC
|
|||||||
select HAVE_PRIVATE_LIBGCC
|
select HAVE_PRIVATE_LIBGCC
|
||||||
select HAVE_GENERIC_BOARD
|
select HAVE_GENERIC_BOARD
|
||||||
select SYS_GENERIC_BOARD
|
select SYS_GENERIC_BOARD
|
||||||
|
select SUPPORT_OF_CONTROL
|
||||||
|
|
||||||
config ARM
|
config ARM
|
||||||
bool "ARM architecture"
|
bool "ARM architecture"
|
||||||
|
11
arch/arc/dts/Makefile
Normal file
11
arch/arc/dts/Makefile
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
dtb-$(CONFIG_TARGET_ARCANGEL4) += arcangel4.dtb
|
||||||
|
|
||||||
|
targets += $(dtb-y)
|
||||||
|
|
||||||
|
DTC_FLAGS += -R 4 -p 0x1000
|
||||||
|
|
||||||
|
PHONY += dtbs
|
||||||
|
dtbs: $(addprefix $(obj)/, $(dtb-y))
|
||||||
|
@:
|
||||||
|
|
||||||
|
clean-files := *.dtb
|
24
arch/arc/dts/arcangel4.dts
Normal file
24
arch/arc/dts/arcangel4.dts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2015 Synopsys, Inc. (www.synopsys.com)
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0+
|
||||||
|
*/
|
||||||
|
/dts-v1/;
|
||||||
|
|
||||||
|
#include "skeleton.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
console = &arcuart0;
|
||||||
|
};
|
||||||
|
|
||||||
|
arcuart0: serial@0xc0fc1000 {
|
||||||
|
compatible = "snps,arc-uart";
|
||||||
|
reg = <0xc0fc1000 0x100>;
|
||||||
|
clock-frequency = <80000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
13
arch/arc/dts/skeleton.dtsi
Normal file
13
arch/arc/dts/skeleton.dtsi
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
/*
|
||||||
|
* Skeleton device tree; the bare minimum needed to boot; just include and
|
||||||
|
* add a compatible value. The bootloader will typically populate the memory
|
||||||
|
* node.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/ {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
chosen { };
|
||||||
|
aliases { };
|
||||||
|
memory { device_type = "memory"; reg = <0 0>; };
|
||||||
|
};
|
@ -1,5 +1,10 @@
|
|||||||
CONFIG_ARC=y
|
CONFIG_ARC=y
|
||||||
CONFIG_CPU_BIG_ENDIAN=y
|
CONFIG_CPU_BIG_ENDIAN=y
|
||||||
CONFIG_TARGET_ARCANGEL4=y
|
CONFIG_TARGET_ARCANGEL4=y
|
||||||
|
CONFIG_DM=y
|
||||||
|
CONFIG_DM_SERIAL=y
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="arcangel4"
|
||||||
CONFIG_SYS_TEXT_BASE=0x81000000
|
CONFIG_SYS_TEXT_BASE=0x81000000
|
||||||
CONFIG_SYS_CLK_FREQ=70000000
|
CONFIG_SYS_CLK_FREQ=70000000
|
||||||
|
CONFIG_OF_CONTROL=y
|
||||||
|
CONFIG_OF_EMBED=y
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
CONFIG_ARC=y
|
CONFIG_ARC=y
|
||||||
CONFIG_TARGET_ARCANGEL4=y
|
CONFIG_TARGET_ARCANGEL4=y
|
||||||
|
CONFIG_DM=y
|
||||||
|
CONFIG_DM_SERIAL=y
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="arcangel4"
|
||||||
CONFIG_SYS_TEXT_BASE=0x81000000
|
CONFIG_SYS_TEXT_BASE=0x81000000
|
||||||
CONFIG_SYS_CLK_FREQ=70000000
|
CONFIG_SYS_CLK_FREQ=70000000
|
||||||
|
CONFIG_OF_CONTROL=y
|
||||||
|
CONFIG_OF_EMBED=y
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <dm.h>
|
||||||
#include <serial.h>
|
#include <serial.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
@ -23,21 +24,23 @@ struct arc_serial_regs {
|
|||||||
unsigned int baudh;
|
unsigned int baudh;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
struct arc_serial_platdata {
|
||||||
|
struct arc_serial_regs *reg;
|
||||||
|
unsigned int uartclk;
|
||||||
|
};
|
||||||
|
|
||||||
/* Bit definitions of STATUS register */
|
/* Bit definitions of STATUS register */
|
||||||
#define UART_RXEMPTY (1 << 5)
|
#define UART_RXEMPTY (1 << 5)
|
||||||
#define UART_OVERFLOW_ERR (1 << 1)
|
#define UART_OVERFLOW_ERR (1 << 1)
|
||||||
#define UART_TXEMPTY (1 << 7)
|
#define UART_TXEMPTY (1 << 7)
|
||||||
|
|
||||||
struct arc_serial_regs *regs = (struct arc_serial_regs *)CONFIG_ARC_UART_BASE;
|
static int arc_serial_setbrg(struct udevice *dev, int baudrate)
|
||||||
|
|
||||||
static void arc_serial_setbrg(void)
|
|
||||||
{
|
{
|
||||||
int arc_console_baud;
|
struct arc_serial_platdata *plat = dev->platdata;
|
||||||
|
struct arc_serial_regs *const regs = plat->reg;
|
||||||
|
int arc_console_baud = gd->cpu_clk / (baudrate * 4) - 1;
|
||||||
|
|
||||||
if (!gd->baudrate)
|
|
||||||
gd->baudrate = CONFIG_BAUDRATE;
|
|
||||||
|
|
||||||
arc_console_baud = gd->cpu_clk / (gd->baudrate * 4) - 1;
|
|
||||||
writeb(arc_console_baud & 0xff, ®s->baudl);
|
writeb(arc_console_baud & 0xff, ®s->baudl);
|
||||||
|
|
||||||
#ifdef CONFIG_ARC
|
#ifdef CONFIG_ARC
|
||||||
@ -56,33 +59,49 @@ static void arc_serial_setbrg(void)
|
|||||||
#else
|
#else
|
||||||
writeb((arc_console_baud & 0xff00) >> 8, ®s->baudh);
|
writeb((arc_console_baud & 0xff00) >> 8, ®s->baudh);
|
||||||
#endif
|
#endif
|
||||||
}
|
|
||||||
|
|
||||||
static int arc_serial_init(void)
|
|
||||||
{
|
|
||||||
serial_setbrg();
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void arc_serial_putc(const char c)
|
static int arc_serial_putc(struct udevice *dev, const char c)
|
||||||
{
|
{
|
||||||
|
struct arc_serial_platdata *plat = dev->platdata;
|
||||||
|
struct arc_serial_regs *const regs = plat->reg;
|
||||||
|
|
||||||
if (c == '\n')
|
if (c == '\n')
|
||||||
arc_serial_putc('\r');
|
arc_serial_putc(dev, '\r');
|
||||||
|
|
||||||
while (!(readb(®s->status) & UART_TXEMPTY))
|
while (!(readb(®s->status) & UART_TXEMPTY))
|
||||||
;
|
;
|
||||||
|
|
||||||
writeb(c, ®s->data);
|
writeb(c, ®s->data);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int arc_serial_tstc(void)
|
static int arc_serial_tstc(struct arc_serial_regs *const regs)
|
||||||
{
|
{
|
||||||
return !(readb(®s->status) & UART_RXEMPTY);
|
return !(readb(®s->status) & UART_RXEMPTY);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int arc_serial_getc(void)
|
static int arc_serial_pending(struct udevice *dev, bool input)
|
||||||
{
|
{
|
||||||
while (!arc_serial_tstc())
|
struct arc_serial_platdata *plat = dev->platdata;
|
||||||
|
struct arc_serial_regs *const regs = plat->reg;
|
||||||
|
uint32_t status = readb(®s->status);
|
||||||
|
|
||||||
|
if (input)
|
||||||
|
return status & UART_RXEMPTY ? 0 : 1;
|
||||||
|
else
|
||||||
|
return status & UART_TXEMPTY ? 0 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int arc_serial_getc(struct udevice *dev)
|
||||||
|
{
|
||||||
|
struct arc_serial_platdata *plat = dev->platdata;
|
||||||
|
struct arc_serial_regs *const regs = plat->reg;
|
||||||
|
|
||||||
|
while (!arc_serial_tstc(regs))
|
||||||
;
|
;
|
||||||
|
|
||||||
/* Check for overflow errors */
|
/* Check for overflow errors */
|
||||||
@ -92,23 +111,42 @@ static int arc_serial_getc(void)
|
|||||||
return readb(®s->data) & 0xFF;
|
return readb(®s->data) & 0xFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct serial_device arc_serial_drv = {
|
static int arc_serial_probe(struct udevice *dev)
|
||||||
.name = "arc_serial",
|
{
|
||||||
.start = arc_serial_init,
|
return 0;
|
||||||
.stop = NULL,
|
}
|
||||||
.setbrg = arc_serial_setbrg,
|
|
||||||
.putc = arc_serial_putc,
|
static const struct dm_serial_ops arc_serial_ops = {
|
||||||
.puts = default_serial_puts,
|
.putc = arc_serial_putc,
|
||||||
.getc = arc_serial_getc,
|
.pending = arc_serial_pending,
|
||||||
.tstc = arc_serial_tstc,
|
.getc = arc_serial_getc,
|
||||||
|
.setbrg = arc_serial_setbrg,
|
||||||
};
|
};
|
||||||
|
|
||||||
void arc_serial_initialize(void)
|
static const struct udevice_id arc_serial_ids[] = {
|
||||||
|
{ .compatible = "snps,arc-uart" },
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
|
static int arc_serial_ofdata_to_platdata(struct udevice *dev)
|
||||||
{
|
{
|
||||||
serial_register(&arc_serial_drv);
|
struct arc_serial_platdata *plat = dev_get_platdata(dev);
|
||||||
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
|
plat->reg = (struct arc_serial_regs *)fdtdec_get_addr(gd->fdt_blob,
|
||||||
|
dev->of_offset, "reg");
|
||||||
|
plat->uartclk = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
|
||||||
|
"clock-frequency", 0);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
__weak struct serial_device *default_serial_console(void)
|
U_BOOT_DRIVER(serial_arc) = {
|
||||||
{
|
.name = "serial_arc",
|
||||||
return &arc_serial_drv;
|
.id = UCLASS_SERIAL,
|
||||||
}
|
.of_match = arc_serial_ids,
|
||||||
|
.ofdata_to_platdata = arc_serial_ofdata_to_platdata,
|
||||||
|
.probe = arc_serial_probe,
|
||||||
|
.ops = &arc_serial_ops,
|
||||||
|
.flags = DM_FLAG_PRE_RELOC,
|
||||||
|
};
|
||||||
|
Reference in New Issue
Block a user