mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2026-02-28 02:01:50 +00:00
Introduce a FDT-based driver for the Andes Last Level Cache (LLC) controller to support cache maintenance operations. Signed-off-by: Ben Zong-You Xie <ben717@andestech.com> Link: https://lore.kernel.org/r/20251229071914.1451587-5-ben717@andestech.com Signed-off-by: Anup Patel <anup@brainfault.org>
37 lines
580 B
Plaintext
37 lines
580 B
Plaintext
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
menu "Cache Support"
|
|
|
|
config FDT_CACHE
|
|
bool "FDT based cache drivers"
|
|
depends on FDT
|
|
select CACHE
|
|
default n
|
|
|
|
if FDT_CACHE
|
|
|
|
config FDT_CACHE_ANDES_LLCACHE
|
|
bool "Andes FDT last level cache driver"
|
|
depends on FDT_HSM_ANDES_ATCSMU
|
|
default n
|
|
|
|
config FDT_CACHE_SIFIVE_CCACHE
|
|
bool "SiFive CCACHE FDT cache driver"
|
|
default n
|
|
|
|
config FDT_CACHE_SIFIVE_EC
|
|
bool "SiFive EC FDT cache driver"
|
|
default n
|
|
|
|
config FDT_CACHE_SIFIVE_PL2
|
|
bool "SiFive PL2 FDT cache driver"
|
|
default n
|
|
|
|
endif
|
|
|
|
config CACHE
|
|
bool "Cache support"
|
|
default n
|
|
|
|
endmenu
|