mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 23:41:23 +01:00

Add FDT driver for Renesas SCIF. dts example: soc: soc { .... scif0: serial@1004b800 { compatible = "renesas,scif-r9a07g043", "renesas,scif-r9a07g044"; reg = <0 0x1004b800 0 0x400>; interrupts = <412 IRQ_TYPE_LEVEL_HIGH>, <414 IRQ_TYPE_LEVEL_HIGH>, <415 IRQ_TYPE_LEVEL_HIGH>, <413 IRQ_TYPE_LEVEL_HIGH>, <416 IRQ_TYPE_LEVEL_HIGH>, <416 IRQ_TYPE_LEVEL_HIGH>; interrupt-names = "eri", "rxi", "txi", "bri", "dri", "tei"; clocks = <&cpg CPG_MOD R9A07G043_SCIF0_CLK_PCK>; clock-names = "fck"; power-domains = <&cpg>; resets = <&cpg R9A07G043_SCIF0_RST_SYSTEM_N>; status = "disabled"; }; .... }; Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Anup Patel <anup@brainfault.org>
32 lines
781 B
C
32 lines
781 B
C
// SPDX-License-Identifier: BSD-2-Clause
|
|
/*
|
|
* Copyright (C) 2022 Renesas Electronics Corporation
|
|
*/
|
|
|
|
#include <sbi_utils/fdt/fdt_helper.h>
|
|
#include <sbi_utils/serial/fdt_serial.h>
|
|
#include <sbi_utils/serial/renesas-scif.h>
|
|
|
|
static int serial_renesas_scif_init(void *fdt, int nodeoff,
|
|
const struct fdt_match *match)
|
|
{
|
|
struct platform_uart_data uart = { 0 };
|
|
int ret;
|
|
|
|
ret = fdt_parse_renesas_scif_node(fdt, nodeoff, &uart);
|
|
if (ret)
|
|
return ret;
|
|
|
|
return renesas_scif_init(uart.addr, uart.freq, uart.baud);
|
|
}
|
|
|
|
static const struct fdt_match serial_renesas_scif_match[] = {
|
|
{ .compatible = "renesas,scif-r9a07g043" },
|
|
{ /* sentinel */ }
|
|
};
|
|
|
|
struct fdt_serial fdt_serial_renesas_scif = {
|
|
.match_table = serial_renesas_scif_match,
|
|
.init = serial_renesas_scif_init
|
|
};
|