2020-11-01 20:48:15 +01:00
|
|
|
# Memory controller configuration options
|
|
|
|
|
|
|
|
# Copyright (c) 2020 Teslabs Engineering S.L.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig MEMC
|
2023-03-27 14:55:23 +02:00
|
|
|
bool "Memory controller drivers [EXPERIMENTAL]"
|
2021-10-15 14:28:18 +02:00
|
|
|
select EXPERIMENTAL
|
2020-11-01 20:48:15 +01:00
|
|
|
help
|
|
|
|
Add support for memory controllers
|
|
|
|
|
|
|
|
if MEMC
|
|
|
|
|
|
|
|
config MEMC_INIT_PRIORITY
|
|
|
|
int "Initialization priority"
|
2024-10-07 18:17:22 +03:00
|
|
|
default 80 if MSPI
|
2020-11-01 20:48:15 +01:00
|
|
|
default 0
|
|
|
|
help
|
|
|
|
Memory controllers initialization priority.
|
|
|
|
|
2025-04-14 17:27:22 +02:00
|
|
|
# zephyr-keep-sorted-start
|
|
|
|
source "drivers/memc/Kconfig.max32_hpb"
|
2021-03-31 13:46:34 +02:00
|
|
|
source "drivers/memc/Kconfig.mcux"
|
2025-04-14 17:27:22 +02:00
|
|
|
source "drivers/memc/Kconfig.mspi"
|
|
|
|
source "drivers/memc/Kconfig.nxp_s32"
|
|
|
|
source "drivers/memc/Kconfig.renesas_ra"
|
2022-02-10 15:13:39 +01:00
|
|
|
source "drivers/memc/Kconfig.sam"
|
2023-03-29 11:29:22 +02:00
|
|
|
source "drivers/memc/Kconfig.sifive"
|
2025-04-15 15:56:18 +02:00
|
|
|
source "drivers/memc/Kconfig.siwx91x_qspi"
|
2024-01-23 22:13:59 +02:00
|
|
|
source "drivers/memc/Kconfig.smartbond"
|
2025-04-14 17:27:22 +02:00
|
|
|
source "drivers/memc/Kconfig.stm32"
|
|
|
|
# zephyr-keep-sorted-stop
|
2025-03-10 16:14:35 -06:00
|
|
|
|
2024-08-14 17:45:39 -05:00
|
|
|
module = MEMC
|
|
|
|
module-str = memc
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2020-11-01 20:48:15 +01:00
|
|
|
endif
|