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