mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 13:25:24 +00:00
Some NXP SoC's have External cache that is managed by the XCACHE cache controller. Signed-off-by: Mahesh Mahadevan <mahesh.mahadevan@nxp.com>
27 lines
571 B
Plaintext
27 lines
571 B
Plaintext
# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig CACHE
|
|
bool "External cache controller drivers"
|
|
default y if CACHE_MANAGEMENT
|
|
help
|
|
Enable support for external cache controllers drivers
|
|
|
|
if CACHE
|
|
|
|
config CACHE_HAS_DRIVER
|
|
bool
|
|
|
|
module = CACHE
|
|
module-str = cache
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
comment "Device Drivers"
|
|
|
|
source "drivers/cache/Kconfig.aspeed"
|
|
source "drivers/cache/Kconfig.nrf"
|
|
source "drivers/cache/Kconfig.andes"
|
|
source "drivers/cache/Kconfig.nxp_xcache"
|
|
|
|
endif # CACHE
|