]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
riscv: Split SiFive CLINT support between SPL and U-Boot proper
authorBin Meng <bmeng.cn@gmail.com>
Tue, 11 May 2021 12:04:12 +0000 (20:04 +0800)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Mon, 17 May 2021 08:42:24 +0000 (16:42 +0800)
At present there is only one Kconfig option CONFIG_SIFIVE_CLINT to
control the enabling of SiFive CLINT support in both SPL (M-mode)
and U-Boot proper (S-mode). So for a typical SPL config that the
SiFive CLINT driver is enabled in both SPL and U-Boot proper, that
means the S-mode U-Boot tries to access the memory-mapped CLINT
registers directly, instead of the normal 'rdtime' instruction.

This was not a problem before, as the hardware does not forbid the
access from S-mode. However this becomes an issue now with OpenSBI
commit 8b569803475e ("lib: utils/sys: Add CLINT memregion in the root domain")
that the SiFive CLINT register space is protected by PMP for M-mode
access only. U-Boot proper does not boot any more with the latest
OpenSBI, that access exceptions are fired forever from U-Boot when
trying to read the timer value via the SiFive CLINT driver in U-Boot.

To solve this, we need to split current SiFive CLINT support between
SPL and U-Boot proper, using 2 separate Kconfig options.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
arch/riscv/Kconfig
arch/riscv/cpu/fu540/Kconfig
arch/riscv/cpu/generic/Kconfig
arch/riscv/include/asm/global_data.h
arch/riscv/lib/Makefile
drivers/timer/Makefile

index 3f221dccdb3f7c83579c59d26ab51cf733714e8e..82e10da11ee9e99d4da898dc894eb537ada0d43c 100644 (file)
@@ -158,7 +158,14 @@ config DMA_ADDR_T_64BIT
 
 config SIFIVE_CLINT
        bool
-       depends on RISCV_MMODE || SPL_RISCV_MMODE
+       depends on RISCV_MMODE
+       help
+         The SiFive CLINT block holds memory-mapped control and status registers
+         associated with software and timer interrupts.
+
+config SPL_SIFIVE_CLINT
+       bool
+       depends on SPL_RISCV_MMODE
        help
          The SiFive CLINT block holds memory-mapped control and status registers
          associated with software and timer interrupts.
index 616b25650f093098ba5b26f9f5cb50b29733d3aa..dcf099447bea70b18f02738ca6ff02c06406d00b 100644 (file)
@@ -11,7 +11,7 @@ config SIFIVE_FU540
        imply CPU
        imply CPU_RISCV
        imply RISCV_TIMER if (RISCV_SMODE || SPL_RISCV_SMODE)
-       imply SIFIVE_CLINT if (RISCV_MMODE || SPL_RISCV_MMODE)
+       imply SPL_SIFIVE_CLINT
        imply CMD_CPU
        imply SPL_CPU
        imply SPL_OPENSBI
index 198e36e969bb12f8f9f404acfcd36ea54ab3705b..6f73bdd26b6d93946f6a3160b6b211342bc34a50 100644 (file)
@@ -8,7 +8,8 @@ config GENERIC_RISCV
        imply CPU
        imply CPU_RISCV
        imply RISCV_TIMER if (RISCV_SMODE || SPL_RISCV_SMODE)
-       imply SIFIVE_CLINT if (RISCV_MMODE || SPL_RISCV_MMODE)
+       imply SIFIVE_CLINT if RISCV_MMODE
+       imply SPL_SIFIVE_CLINT if SPL_RISCV_MMODE
        imply CMD_CPU
        imply SPL_CPU
        imply SPL_OPENSBI
index d3a0b1d2215621f6553051eb0834e288d6ab5371..095484a63586d41f5a3c04883aeb6eca6c524fb9 100644 (file)
@@ -18,7 +18,7 @@
 struct arch_global_data {
        long boot_hart;         /* boot hart id */
        phys_addr_t firmware_fdt_addr;
-#ifdef CONFIG_SIFIVE_CLINT
+#if CONFIG_IS_ENABLED(SIFIVE_CLINT)
        void __iomem *clint;    /* clint base address */
 #endif
 #ifdef CONFIG_ANDES_PLIC
index d08cbe9b79deb8a8914fdc8405905e6474d6d504..c4cc41434b0b4ca5b4f924b5e26c81930c9c626a 100644 (file)
@@ -11,7 +11,7 @@ obj-$(CONFIG_CMD_BOOTI) += bootm.o image.o
 obj-$(CONFIG_CMD_GO) += boot.o
 obj-y  += cache.o
 ifeq ($(CONFIG_$(SPL_)RISCV_MMODE),y)
-obj-$(CONFIG_SIFIVE_CLINT) += sifive_clint.o
+obj-$(CONFIG_$(SPL_)SIFIVE_CLINT) += sifive_clint.o
 obj-$(CONFIG_ANDES_PLIC) += andes_plic.o
 else
 obj-$(CONFIG_SBI) += sbi.o
index eb5c48cc6cec28fe444a579f3adf1073fdc37ec5..2ebdeab0ce1329ac162c4534df3aa44e21bcae5b 100644 (file)
@@ -19,7 +19,7 @@ obj-$(CONFIG_RENESAS_OSTM_TIMER) += ostm_timer.o
 obj-$(CONFIG_RISCV_TIMER) += riscv_timer.o
 obj-$(CONFIG_ROCKCHIP_TIMER) += rockchip_timer.o
 obj-$(CONFIG_SANDBOX_TIMER)    += sandbox_timer.o
-obj-$(CONFIG_SIFIVE_CLINT) += sifive_clint_timer.o
+obj-$(CONFIG_$(SPL_)SIFIVE_CLINT) += sifive_clint_timer.o
 obj-$(CONFIG_STI_TIMER)                += sti-timer.o
 obj-$(CONFIG_STM32_TIMER)      += stm32_timer.o
 obj-$(CONFIG_X86_TSC_TIMER)    += tsc_timer.o