zephyr/drivers/memc/Kconfig
The Nguyen ee04db8b4d drivers: memc: enable support for SDRAM controller on Renesas RA family
First commit to add support for SDRAM controller on Renesas RA SoC

Signed-off-by: The Nguyen <the.nguyen.yf@renesas.com>
2024-12-20 23:53:37 +02:00

41 lines
805 B
Text

# Memory controller configuration options
# Copyright (c) 2020 Teslabs Engineering S.L.
# SPDX-License-Identifier: Apache-2.0
menuconfig MEMC
bool "Memory controller drivers [EXPERIMENTAL]"
select EXPERIMENTAL
help
Add support for memory controllers
if MEMC
config MEMC_INIT_PRIORITY
int "Initialization priority"
default 80 if MSPI
default 0
help
Memory controllers initialization priority.
source "drivers/memc/Kconfig.stm32"
source "drivers/memc/Kconfig.mcux"
source "drivers/memc/Kconfig.sam"
source "drivers/memc/Kconfig.sifive"
source "drivers/memc/Kconfig.nxp_s32"
source "drivers/memc/Kconfig.smartbond"
source "drivers/memc/Kconfig.mspi"
source "drivers/memc/Kconfig.renesas_ra"
module = MEMC
module-str = memc
source "subsys/logging/Kconfig.template.log_config"
endif