From 5fed1968426d82c441b16ad09d8638506c0abc22 Mon Sep 17 00:00:00 2001 From: Yangbo Lu Date: Tue, 24 Jun 2025 09:57:35 +0800 Subject: [PATCH] tests: drivers: gpio_basic_api: add imx943 m33 dts overlay Added imx943 m33 dts overlay. Signed-off-by: Yangbo Lu --- .../boards/imx943_evk_mimx94398_m33.overlay | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/drivers/gpio/gpio_basic_api/boards/imx943_evk_mimx94398_m33.overlay diff --git a/tests/drivers/gpio/gpio_basic_api/boards/imx943_evk_mimx94398_m33.overlay b/tests/drivers/gpio/gpio_basic_api/boards/imx943_evk_mimx94398_m33.overlay new file mode 100644 index 00000000000..fe6d484413a --- /dev/null +++ b/tests/drivers/gpio/gpio_basic_api/boards/imx943_evk_mimx94398_m33.overlay @@ -0,0 +1,22 @@ +/* + * Copyright 2025 NXP + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/{ + resources { + compatible = "test-gpio-basic-api"; + /* + * Use connector J44 Pin10 M1_LED_TP1 which connects to GPIO2 Pin31 as output + * GPIO, and connector J52 Pin16 M1_PWM_PFC2 which connect to GPIO2 Pin21 as + * input GPIO, connect these two pins with a Dupont Line. + */ + out-gpios = <&gpio2 31 0>; + in-gpios = <&gpio2 21 0>; + }; +}; + +&gpio2 { + status = "okay"; +};