Commit b0b1394f authored by Thao Luong's avatar Thao Luong Committed by Benjamin Cabé
Browse files

tests: drivers: spi: Add configs and dts node for ek_ra4l1



Add configs and dts node for ek_ra4l1 run on spi_loopback

Signed-off-by: default avatarThao Luong <thao.luong.uw@renesas.com>
parent e139d936
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
# Copyright (c) 2025 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0

CONFIG_SPI_LOOPBACK_MODE_LOOP=y
CONFIG_SPI_INTERRUPT=y
CONFIG_SPI_RA_DTC=y
+21 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2025 Renesas Electronics Corporation
 * SPDX-License-Identifier: Apache-2.0
 */

&spi0 {
	rx-dtc;
	tx-dtc;

	slow@0 {
		compatible = "test-spi-loopback-slow";
		reg = <0>;
		spi-max-frequency = <2000000>;
	};

	fast@0 {
		compatible = "test-spi-loopback-fast";
		reg = <0>;
		spi-max-frequency = <3000000>;
	};
};