Skip to content

Commit b06bf51

Browse files
carlescufikartben
authored andcommitted
boards: nrf54l15dk: Enable tests and samples for the L05 and L10
This is a follow-up to 2147577, extending the number of tests and samples that use the new L05 and L10. Signed-off-by: Carles Cufi <[email protected]>
1 parent 992db7d commit b06bf51

12 files changed

+114
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/ {
2+
cpuapp_sram@20017000 {
3+
compatible = "zephyr,memory-region", "mmio-sram";
4+
reg = <0x20017000 DT_SIZE_K(4)>;
5+
zephyr,memory-region = "RetainedMem";
6+
status = "okay";
7+
8+
retainedmem0: retainedmem {
9+
compatible = "zephyr,retained-ram";
10+
status = "okay";
11+
};
12+
};
13+
14+
aliases {
15+
retainedmemdevice = &retainedmem0;
16+
};
17+
};
18+
19+
&cpuapp_sram {
20+
/* Shrink SRAM size to avoid overlap with retained memory region:
21+
* 96 - 4 = 92KB = 0x17000
22+
*/
23+
reg = <0x20000000 0x17000>;
24+
ranges = <0x0 0x20000000 0x17000>;
25+
};
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/ {
2+
cpuapp_sram@2002f000 {
3+
compatible = "zephyr,memory-region", "mmio-sram";
4+
reg = <0x2002f000 DT_SIZE_K(4)>;
5+
zephyr,memory-region = "RetainedMem";
6+
status = "okay";
7+
8+
retainedmem0: retainedmem {
9+
compatible = "zephyr,retained-ram";
10+
status = "okay";
11+
};
12+
};
13+
14+
aliases {
15+
retainedmemdevice = &retainedmem0;
16+
};
17+
};
18+
19+
&cpuapp_sram {
20+
/* Shrink SRAM size to avoid overlap with retained memory region:
21+
* 192 - 4 = 188KB = 0x2f000
22+
*/
23+
reg = <0x20000000 0x2f000>;
24+
ranges = <0x0 0x20000000 0x2f000>;
25+
};

samples/boards/nordic/system_off/sample.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ tests:
88
integration_platforms:
99
- nrf52840dk/nrf52840
1010
platform_allow:
11+
- nrf54l15dk/nrf54l05/cpuapp
12+
- nrf54l15dk/nrf54l10/cpuapp
1113
- nrf54l15dk/nrf54l15/cpuapp
1214
- nrf52840dk/nrf52840
1315
- nrf52dk/nrf52832
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_NVS=y
2+
CONFIG_SETTINGS_NVS=y
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONFIG_NVS=y
2+
CONFIG_SETTINGS_NVS=y

samples/subsys/settings/sample.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ tests:
1010
- native_sim
1111
- native_sim/native/64
1212
- mr_canhubk3
13+
- nrf54l15dk/nrf54l05/cpuapp
14+
- nrf54l15dk/nrf54l10/cpuapp
1315
- nrf54l15dk/nrf54l15/cpuapp
1416
- nrf54h20dk/nrf54h20/cpuapp
1517
integration_platforms:

tests/drivers/flash/common/testcase.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ tests:
4242
- mimxrt1060_evk
4343
drivers.flash.common.no_explicit_erase:
4444
platform_allow:
45+
- nrf54l15dk/nrf54l05/cpuapp
46+
- nrf54l15dk/nrf54l10/cpuapp
4547
- nrf54l15dk/nrf54l15/cpuapp
4648
- nrf54h20dk/nrf54h20/cpuapp
4749
drivers.flash.common.tfm_ns:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_POWEROFF=y
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/ {
2+
cpuapp_sram@20017000 {
3+
compatible = "zephyr,memory-region", "mmio-sram";
4+
reg = <0x20017000 DT_SIZE_K(4)>;
5+
zephyr,memory-region = "RetainedMem";
6+
status = "okay";
7+
8+
retainedmem0: retainedmem {
9+
compatible = "zephyr,retained-ram";
10+
status = "okay";
11+
};
12+
};
13+
14+
aliases {
15+
retainedmemtestdevice = &retainedmem0;
16+
};
17+
};
18+
19+
&cpuapp_sram {
20+
/* Shrink SRAM size to avoid overlap with retained memory region:
21+
* 96 - 4 = 92KB = 0x17000
22+
*/
23+
reg = <0x20000000 0x17000>;
24+
ranges = <0x0 0x20000000 0x17000>;
25+
};
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_POWEROFF=y

0 commit comments

Comments
 (0)