Skip to content

Commit aad9f96

Browse files
[nrf fromtree] tests: drivers: flash: extend support for nRF54L09 and nRF54L20
Added missing nodes, configurations and filters in testcase.yaml. Signed-off-by: Michał Stasiak <michal.stasiak@nordicsemi.no> (cherry picked from commit 1e972956222ab0f4c472b78ca6c13c4628d5b1d9)
1 parent 9c961c0 commit aad9f96

File tree

6 files changed

+15
-4
lines changed

6 files changed

+15
-4
lines changed

boards/nordic/nrf54l20pdk/nrf54l20_cpuapp_common.dtsi

+4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
label = "image-1-nonsecure";
7070
reg = <0x160c00 DT_SIZE_K(449)>;
7171
};
72+
storage_partition: partition@1d1000 {
73+
label = "storage";
74+
reg = <0x1d1000 DT_SIZE_K(36)>;
75+
};
7276
};
7377
};
7478

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CONFIG_FCB=y
2+
CONFIG_FLASH_MAP=y
3+
CONFIG_SETTINGS=y
4+
CONFIG_SETTINGS_FCB=y
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CONFIG_FCB=y
2+
CONFIG_FLASH_MAP=y
3+
CONFIG_SETTINGS=y
4+
CONFIG_SETTINGS_FCB=y

tests/drivers/flash/common/testcase.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ tests:
4646
- nrf54l09pdk/nrf54l09/cpuapp
4747
- nrf54l15dk/nrf54l10/cpuapp
4848
- nrf54l15dk/nrf54l15/cpuapp
49+
- nrf54l20pdk/nrf54l20/cpuapp
4950
- nrf54h20dk/nrf54h20/cpuapp
5051
drivers.flash.common.tfm_ns:
5152
build_only: true

tests/drivers/flash/negative_tests/src/main.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@
2626
#define TEST_AREA_SIZE FIXED_PARTITION_SIZE(TEST_AREA)
2727
#define TEST_AREA_DEVICE FIXED_PARTITION_DEVICE(TEST_AREA)
2828

29-
#if defined(CONFIG_SOC_NRF54L05) || \
30-
defined(CONFIG_SOC_NRF54L09) || \
31-
defined(CONFIG_SOC_NRF54L10) || \
32-
defined(CONFIG_SOC_NRF54L15)
29+
#if defined(CONFIG_SOC_SERIES_NRF54LX)
3330
#define TEST_FLASH_START (DT_REG_ADDR(DT_MEM_FROM_FIXED_PARTITION(DT_NODELABEL(TEST_AREA))))
3431
#define TEST_FLASH_SIZE (DT_REG_SIZE(DT_MEM_FROM_FIXED_PARTITION(DT_NODELABEL(TEST_AREA))))
3532
#elif defined(CONFIG_SOC_NRF54H20)

tests/drivers/flash/negative_tests/testcase.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ tests:
77
platform_allow:
88
- nrf54l09pdk/nrf54l09/cpuapp
99
- nrf54l15dk/nrf54l15/cpuapp
10+
- nrf54l20pdk/nrf54l20/cpuapp
1011
- nrf54h20dk/nrf54h20/cpuapp

0 commit comments

Comments
 (0)