Add a generic driver for MSPI controllers based on the DesignWare SSI core. With small vendor-specific adaptations covering integration details, it should be possible to use the driver for various devices. Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
10 lines
303 B
Plaintext
10 lines
303 B
Plaintext
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MSPI_DW
|
|
bool "DesignWare SSI controller driver"
|
|
default y
|
|
depends on DT_HAS_SNPS_DESIGNWARE_SSI_ENABLED
|
|
select PINCTRL if $(dt_compat_any_has_prop,$(DT_COMPAT_SNPS_DESIGNWARE_SSI),pinctrl-0)
|
|
imply MSPI_XIP
|