]> git.dujemihanovic.xyz Git - u-boot.git/commit
riscv: andesv5: Prefer using the generic RISC-V timer driver in S-mode
authorYu Chien Peter Lin <peterlin@andestech.com>
Fri, 29 Sep 2023 04:03:07 +0000 (12:03 +0800)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Wed, 4 Oct 2023 10:23:54 +0000 (18:23 +0800)
commit8a0d5f2f51b72b3cabacfe90ff196db3e1c4dc4d
treee73f03e8612808bdf02f7a738ab73669ccc26141
parent5f2529763772e26ed6c7f7ecbefe9482ad75fb99
riscv: andesv5: Prefer using the generic RISC-V timer driver in S-mode

The Andes PLMT driver directly accesses the mtime MMIO region,
indicating its intended use in the M-mode boot stage. However,
since U-Boot proper (S-mode) also uses the PLMT driver, we need
to specifically mark the region as readable through PMPCFGx (or
S/U-mode read-only shared data region for Smepmp) in OpenSBI.

Granting permission for this case doesn't make sense. Instead,
we should use the generic RISC-V timer driver to read the mtime
through the TIME CSR. Therefore, we add the SPL_ANDES_PLMT_TIMER
config, which ensures that the PLMT driver is linked exclusively
against M-mode U-Boot or U-Boot SPL binaries.

Signed-off-by: Yu Chien Peter Lin <peterlin@andestech.com>
Reviewed-by: Samuel Holland <samuel@sholland.org>
arch/riscv/cpu/andesv5/Kconfig
drivers/timer/Kconfig
drivers/timer/Makefile