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
21source "drivers/cache/Kconfig.aspeed"
22source "drivers/cache/Kconfig.nrf"
23source "drivers/cache/Kconfig.andes"
24
25endif # CACHE
26