You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
589 B
30 lines
589 B
# 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 |
|
|
|
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" |
|
|
|
source "drivers/memc/Kconfig.mcux" |
|
|
|
source "drivers/memc/Kconfig.sam" |
|
|
|
endif
|
|
|