1# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig CACHE
5	bool "External cache controller drivers"
6	default y if CACHE_MANAGEMENT
7	help
8	  Enable support for external cache controllers drivers
9
10if CACHE
11
12config CACHE_HAS_DRIVER
13	bool
14
15module = CACHE
16module-str = cache
17source "subsys/logging/Kconfig.template.log_config"
18
19comment "Device Drivers"
20
21# zephyr-keep-sorted-start
22source "drivers/cache/Kconfig.andes"
23source "drivers/cache/Kconfig.aspeed"
24source "drivers/cache/Kconfig.bflb"
25source "drivers/cache/Kconfig.nrf"
26source "drivers/cache/Kconfig.nxp_lmem_cache"
27source "drivers/cache/Kconfig.nxp_syscon_lpcac"
28source "drivers/cache/Kconfig.nxp_xcache"
29source "drivers/cache/Kconfig.stm32"
30# zephyr-keep-sorted-stop
31
32endif # CACHE
33