Kconfig 730 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "Cache Drivers"
  3. config AX45MP_L2_CACHE
  4. bool "Andes Technology AX45MP L2 Cache controller"
  5. depends on RISCV
  6. select RISCV_NONSTANDARD_CACHE_OPS
  7. help
  8. Support for the L2 cache controller on Andes Technology AX45MP platforms.
  9. config SIFIVE_CCACHE
  10. bool "Sifive Composable Cache controller"
  11. depends on ARCH_SIFIVE || ARCH_STARFIVE
  12. help
  13. Support for the composable cache controller on SiFive platforms.
  14. config STARFIVE_STARLINK_CACHE
  15. bool "StarFive StarLink Cache controller"
  16. depends on RISCV
  17. depends on ARCH_STARFIVE
  18. depends on 64BIT
  19. select RISCV_DMA_NONCOHERENT
  20. select RISCV_NONSTANDARD_CACHE_OPS
  21. help
  22. Support for the StarLink cache controller IP from StarFive.
  23. endmenu