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
|
|
|
|
|
|
|
|
module = MEMC
|
|
|
|
module-str = memc
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
|
|
|
config MEMC_INIT_PRIORITY
|
|
|
|
int "Initialization priority"
|
|
|
|
default 0
|
|
|
|
help
|
|
|
|
Memory controllers initialization priority.
|
|
|
|
|
|
|
|
source "drivers/memc/Kconfig.stm32"
|
|
|
|
|
2021-03-31 13:46:34 +02:00
|
|
|
source "drivers/memc/Kconfig.mcux"
|
|
|
|
|
2022-02-10 15:13:39 +01:00
|
|
|
source "drivers/memc/Kconfig.sam"
|
|
|
|
|
2020-11-01 20:48:15 +01:00
|
|
|
endif
|