2021-04-28 16:38:27 +08:00
|
|
|
# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig CACHE
|
2023-03-27 20:55:23 +08:00
|
|
|
bool "External cache controller drivers"
|
2022-12-30 17:06:29 +08:00
|
|
|
default y if CACHE_MANAGEMENT
|
2021-04-28 16:38:27 +08:00
|
|
|
help
|
|
|
|
Enable support for external cache controllers drivers
|
|
|
|
|
|
|
|
if CACHE
|
|
|
|
|
2022-12-30 17:06:29 +08:00
|
|
|
config CACHE_HAS_DRIVER
|
|
|
|
bool
|
|
|
|
|
2021-04-28 16:38:27 +08:00
|
|
|
module = CACHE
|
|
|
|
module-str = cache
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2022-12-30 17:06:29 +08:00
|
|
|
comment "Device Drivers"
|
2022-05-13 15:20:31 +08:00
|
|
|
|
|
|
|
source "drivers/cache/Kconfig.aspeed"
|
2023-12-11 22:01:50 +08:00
|
|
|
source "drivers/cache/Kconfig.nrf"
|
2024-01-22 16:32:21 +08:00
|
|
|
source "drivers/cache/Kconfig.andes"
|
2022-12-30 17:06:29 +08:00
|
|
|
|
|
|
|
endif # CACHE
|