1# Copyright (c) 2024, Ambiq Micro Inc. <www.ambiq.com>
2# SPDX-License-Identifier: Apache-2.0
3
4config MSPI_EMUL
5	bool "MSPI emulator"
6	default y
7	depends on DT_HAS_ZEPHYR_MSPI_EMUL_CONTROLLER_ENABLED
8	depends on EMUL
9	select MSPI_XIP
10	select MSPI_SCRAMBLE
11	select MSPI_TIMING
12	select GPIO
13	help
14	  Enable the MSPI emulator driver. This is a fake driver in that it
15	  does not talk to real hardware. Instead it talks to emulation
16	  drivers that pretend to be devices on the emulated MSPI bus. It is
17	  used for testing drivers for MSPI devices.
18