Skip to content

Commit b931057

Browse files
carlescufinordic-piks
authored andcommitted
[nrf fromtree] 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. (cherry picked from commit b06bf51) Signed-off-by: Carles Cufi <[email protected]>
1 parent 8bc628d commit b931057

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
@@ -12,6 +12,8 @@ tests:
1212
- native_sim
1313
- native_sim/native/64
1414
- mr_canhubk3
15+
- nrf54l15dk/nrf54l05/cpuapp
16+
- nrf54l15dk/nrf54l10/cpuapp
1517
- nrf54l15dk/nrf54l15/cpuapp
1618
- nrf54h20dk/nrf54h20/cpuapp
1719
integration_platforms:

tests/drivers/flash/common/testcase.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ tests:
3838
- mimxrt1060_evk
3939
drivers.flash.common.no_explicit_erase:
4040
platform_allow:
41+
- nrf54l15dk/nrf54l05/cpuapp
42+
- nrf54l15dk/nrf54l10/cpuapp
4143
- nrf54l15dk/nrf54l15/cpuapp
4244
- nrf54h20dk/nrf54h20/cpuapp
4345
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)