tests: drivers: spi: support spi_loopback for imx95_evk m7

Added support for spi_loopback for imx95_evk m7.

Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
This commit is contained in:
Yangbo Lu 2025-01-10 11:21:03 +08:00 committed by Benjamin Cabé
commit ef7a0a481f
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1 @@
CONFIG_SPI_LOOPBACK_MODE_LOOP=y

View file

@ -0,0 +1,18 @@
/*
* Copyright 2025 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
&lpspi1 {
slow@0 {
compatible = "test-spi-loopback-slow";
reg = <0>;
spi-max-frequency = <500000>;
};
fast@0 {
compatible = "test-spi-loopback-fast";
reg = <0>;
spi-max-frequency = <1000000>;
};
};