Files
zephyr/drivers/cache/Kconfig
Holt Sun b403bb5c66 drivers: cache: add NXP SYSCON LPCAC cache driver
add cache driver for NXP SYSCON LPCAC controller,
this driver provides instruction cache management
with enable/disable and invalidation support.

Signed-off-by: Holt Sun <holt.sun@nxp.com>
2025-12-03 15:37:50 -05:00

33 lines
791 B
Plaintext

# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
# SPDX-License-Identifier: Apache-2.0
menuconfig CACHE
bool "External cache controller drivers"
default y if CACHE_MANAGEMENT
help
Enable support for external cache controllers drivers
if CACHE
config CACHE_HAS_DRIVER
bool
module = CACHE
module-str = cache
source "subsys/logging/Kconfig.template.log_config"
comment "Device Drivers"
# zephyr-keep-sorted-start
source "drivers/cache/Kconfig.andes"
source "drivers/cache/Kconfig.aspeed"
source "drivers/cache/Kconfig.bflb"
source "drivers/cache/Kconfig.nrf"
source "drivers/cache/Kconfig.nxp_lmem_cache"
source "drivers/cache/Kconfig.nxp_syscon_lpcac"
source "drivers/cache/Kconfig.nxp_xcache"
source "drivers/cache/Kconfig.stm32"
# zephyr-keep-sorted-stop
endif # CACHE