zephyr/drivers/cache/Kconfig
Dylan Hung c880db1725 cache: Add Aspeed AST10x0 external cache driver
The CPU in Aspeed AST10x0 SOC is a ARM Cortex-M4 which doesn't internal
cache memory.  Aspeed implements an integrated system level cache to
accelerate instruction and data memory accesses.

Signed-off-by: Dylan Hung <dylan_hung@aspeedtech.com>
2022-06-05 14:28:50 +02:00

21 lines
401 B
Plaintext

# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
# SPDX-License-Identifier: Apache-2.0
menuconfig CACHE
bool "External cache controllers drivers"
help
Enable support for external cache controllers drivers
if CACHE
module = CACHE
module-str = cache
source "subsys/logging/Kconfig.template.log_config"
config CACHE_HAS_DRIVER
bool
endif # CACHE
source "drivers/cache/Kconfig.aspeed"