]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
riscv: clint: Update the sifive clint ipi driver to support aclint
authorBin Meng <bmeng@tinylab.org>
Wed, 21 Jun 2023 15:11:45 +0000 (23:11 +0800)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Wed, 12 Jul 2023 05:21:40 +0000 (13:21 +0800)
This RISC-V ACLINT specification [1] defines a set of memory mapped
devices which provide inter-processor interrupts (IPI) and timer
functionalities for each HART on a multi-HART RISC-V platform.

The RISC-V ACLINT specification is defined to be backward compatible
with the SiFive CLINT specification, however the device tree binding
is a new one. This change updates the sifive clint ipi driver to
support ACLINT mswi device, by checking the per-driver data field of
the ACLINT mtimer driver to determine whether a syscon based approach
needs to be taken to get the base address of the ACLINT mswi device.

[1] https://github.com/riscv/riscv-aclint/blob/main/riscv-aclint.adoc

Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Rick Chen <rick@andestech.com>
arch/riscv/Kconfig
arch/riscv/lib/sifive_clint.c

index f6ed05906a2f8687b65f75f22654afa79877997e..9fcdd8c451c892c8358f810a12693d2630c73f8f 100644 (file)
@@ -188,6 +188,8 @@ config DMA_ADDR_T_64BIT
 config SIFIVE_CLINT
        bool
        depends on RISCV_MMODE
+       select REGMAP
+       select SYSCON
        help
          The SiFive CLINT block holds memory-mapped control and status registers
          associated with software and timer interrupts.
@@ -195,6 +197,8 @@ config SIFIVE_CLINT
 config SPL_SIFIVE_CLINT
        bool
        depends on SPL_RISCV_MMODE
+       select SPL_REGMAP
+       select SPL_SYSCON
        help
          The SiFive CLINT block holds memory-mapped control and status registers
          associated with software and timer interrupts.
index ab22395c552936496816a15a1e059446bc7d7978..f24216838120b0a239215bcbb6cdc302952c9747 100644 (file)
 
 #include <common.h>
 #include <dm.h>
+#include <regmap.h>
+#include <syscon.h>
 #include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/smp.h>
+#include <asm/syscon.h>
 #include <linux/err.h>
 
 /* MSIP registers */
@@ -30,7 +33,11 @@ int riscv_init_ipi(void)
        if (ret)
                return ret;
 
-       gd->arch.clint = dev_read_addr_ptr(dev);
+       if (dev_get_driver_data(dev) != 0)
+               gd->arch.clint = dev_read_addr_ptr(dev);
+       else
+               gd->arch.clint = syscon_get_first_range(RISCV_SYSCON_CLINT);
+
        if (!gd->arch.clint)
                return -EINVAL;
 
@@ -57,3 +64,15 @@ int riscv_get_ipi(int hart, int *pending)
 
        return 0;
 }
+
+static const struct udevice_id riscv_aclint_swi_ids[] = {
+       { .compatible = "riscv,aclint-mswi", .data = RISCV_SYSCON_CLINT },
+       { }
+};
+
+U_BOOT_DRIVER(riscv_aclint_swi) = {
+       .name           = "riscv_aclint_swi",
+       .id             = UCLASS_SYSCON,
+       .of_match       = riscv_aclint_swi_ids,
+       .flags          = DM_FLAG_PRE_RELOC,
+};