Skip to content

Commit 52f4e92

Browse files
nordic-seglgmarull
authored andcommitted
tests: drivers: gpio: gpio_more_loops: Run on renamed boards
Run the test on nrf54lm20apdk and nrf54lv10apdk. Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 4e6bd78 commit 52f4e92

File tree

5 files changed

+90
-0
lines changed

5 files changed

+90
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
/* Test requirements:
9+
* out-gpios[0] wire connected with in-gpios[0],
10+
* out-gpios[1] wire connected with in-gpios[1],
11+
* etc.
12+
* Output-input GPIO pair must have identical active level flag.
13+
*/
14+
test_gpios {
15+
compatible = "gpio-leds";
16+
out_gpios: out_gpios {
17+
gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>, <&gpio2 2 GPIO_ACTIVE_HIGH>,
18+
<&gpio2 4 GPIO_ACTIVE_HIGH>, <&gpio2 6 GPIO_ACTIVE_HIGH>,
19+
<&gpio1 10 GPIO_ACTIVE_HIGH>;
20+
};
21+
22+
in_gpios: in_gpios {
23+
gpios = <&gpio2 1 GPIO_ACTIVE_HIGH>, <&gpio2 3 GPIO_ACTIVE_HIGH>,
24+
<&gpio2 5 GPIO_ACTIVE_HIGH>, <&gpio2 7 GPIO_ACTIVE_HIGH>,
25+
<&gpio1 11 GPIO_ACTIVE_HIGH>;
26+
};
27+
};
28+
};
29+
30+
&gpiote20 {
31+
status = "okay";
32+
};
33+
34+
&gpio1 {
35+
status = "okay";
36+
};
37+
38+
&gpio2 {
39+
status = "okay";
40+
};
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
#include "nrf54lm20apdk_nrf54lm20a_common.dtsi"
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
/* Test requirements:
9+
* out-gpios[0] wire connected with in-gpios[0],
10+
* out-gpios[1] wire connected with in-gpios[1],
11+
* etc.
12+
* Output-input GPIO pair must have identical active level flag.
13+
*/
14+
test_gpios {
15+
compatible = "gpio-leds";
16+
out_gpios: out_gpios {
17+
gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>;
18+
};
19+
20+
in_gpios: in_gpios {
21+
gpios = <&gpio1 11 GPIO_ACTIVE_HIGH>;
22+
};
23+
};
24+
};
25+
26+
&gpiote20 {
27+
status = "okay";
28+
};
29+
30+
&gpio1 {
31+
status = "okay";
32+
};
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
#include "nrf54lv10apdk_nrf54lv10a_common.dtsi"

tests/drivers/gpio/gpio_more_loops/testcase.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,15 @@ tests:
1818
- nrf54l09pdk/nrf54l09/cpuflpr
1919
- nrf54l20pdk/nrf54l20/cpuapp
2020
- nrf54l20pdk/nrf54l20/cpuflpr
21+
- nrf54lm20apdk/nrf54lm20a/cpuapp
22+
- nrf54lv10apdk/nrf54lv10a/cpuapp
2123
- nrf54h20dk/nrf54h20/cpuapp
2224
- nrf7120pdk/nrf7120/cpuapp
2325
integration_platforms:
2426
- nrf54l15dk/nrf54l15/cpuapp
2527
- nrf54l20pdk/nrf54l20/cpuapp
2628
- nrf54l09pdk/nrf54l09/cpuapp
29+
- nrf54lm20apdk/nrf54lm20a/cpuapp
30+
- nrf54lv10apdk/nrf54lv10a/cpuapp
2731
- nrf54h20dk/nrf54h20/cpuapp
2832
- nrf7120pdk/nrf7120/cpuapp

0 commit comments

Comments
 (0)