Skip to content

tests: drivers: Add overlay for nRF54L15 FLPR core to build_all/gpio #93586

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions tests/drivers/build_all/gpio/nrf54l15dk_nrf54l15_cpuflpr.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright (c) 2025 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

&cpuflpr_rram {
reg = <0x15D000 DT_SIZE_K(128)>;
};

&cpuflpr_code_partition {
reg = <0x0 DT_SIZE_K(128)>;
};

&cpuflpr_sram {
reg = <0x20020000 DT_SIZE_K(128)>;
ranges = <0x0 0x20020000 0x20000>;
};
12 changes: 11 additions & 1 deletion tests/drivers/build_all/gpio/testcase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ common:
tests:
drivers.gpio.build:
min_ram: 32
platform_exclude: serpente
platform_exclude:
- serpente
- nrf54l15dk/nrf54l15/cpuflpr
- nrf54l15dk/nrf54l15/cpuflpr/xip
depends_on:
- gpio
- spi
Expand Down Expand Up @@ -66,3 +69,10 @@ tests:
platform_allow: qemu_cortex_m3
depends_on: gpio
extra_args: DTC_OVERLAY_FILE="iproc.overlay"

drivers.gpio.build.nrf54l15_cpuflpr:
platform_allow:
- nrf54l15dk/nrf54l15/cpuflpr
- nrf54l15dk/nrf54l15/cpuflpr/xip
depends_on: gpio
extra_args: DTC_OVERLAY_FILE="nrf54l15dk_nrf54l15_cpuflpr.overlay"