Skip to content

Commit e28764e

Browse files
kl-cruzfabiobaltieri
authored andcommitted
tests: drivers: Add overlay for nRF54L15 FLPR core to build_all/gpio
Add overlay to increase memory to make compilation works. Signed-off-by: Karol Lasończyk <[email protected]>
1 parent 0207beb commit e28764e

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
&cpuflpr_rram {
8+
reg = <0x15D000 DT_SIZE_K(128)>;
9+
};
10+
11+
&cpuflpr_code_partition {
12+
reg = <0x0 DT_SIZE_K(128)>;
13+
};
14+
15+
&cpuflpr_sram {
16+
reg = <0x20020000 DT_SIZE_K(128)>;
17+
ranges = <0x0 0x20020000 0x20000>;
18+
};

tests/drivers/build_all/gpio/testcase.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ common:
66
tests:
77
drivers.gpio.build:
88
min_ram: 32
9-
platform_exclude: serpente
9+
platform_exclude:
10+
- serpente
11+
- nrf54l15dk/nrf54l15/cpuflpr
12+
- nrf54l15dk/nrf54l15/cpuflpr/xip
1013
depends_on:
1114
- gpio
1215
- spi
@@ -66,3 +69,10 @@ tests:
6669
platform_allow: qemu_cortex_m3
6770
depends_on: gpio
6871
extra_args: DTC_OVERLAY_FILE="iproc.overlay"
72+
73+
drivers.gpio.build.nrf54l15_cpuflpr:
74+
platform_allow:
75+
- nrf54l15dk/nrf54l15/cpuflpr
76+
- nrf54l15dk/nrf54l15/cpuflpr/xip
77+
depends_on: gpio
78+
extra_args: DTC_OVERLAY_FILE="nrf54l15dk_nrf54l15_cpuflpr.overlay"

0 commit comments

Comments
 (0)