-
Notifications
You must be signed in to change notification settings - Fork 631
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf fromtree] tests: drivers: retained_mem: Run test on nrf54l20pdk
Add overlays to execute retained_mem test on nrf54l20pdk. Signed-off-by: Sebastian Głąb <[email protected]> (cherry picked from commit eaf999288965ea1e3d8acb18501033e9028f4336)
- Loading branch information
1 parent
7c3bd68
commit 9f6f623
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
tests/drivers/retained_mem/api/boards/nrf54l20pdk_nrf54l20_cpuapp.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CONFIG_POWEROFF=y |
25 changes: 25 additions & 0 deletions
25
tests/drivers/retained_mem/api/boards/nrf54l20pdk_nrf54l20_cpuapp.overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/ { | ||
cpuapp_sram@2007ec00 { | ||
compatible = "zephyr,memory-region", "mmio-sram"; | ||
reg = <0x2007ec00 DT_SIZE_K(4)>; | ||
zephyr,memory-region = "RetainedMem"; | ||
status = "okay"; | ||
|
||
retainedmem0: retainedmem { | ||
compatible = "zephyr,retained-ram"; | ||
status = "okay"; | ||
}; | ||
}; | ||
|
||
aliases { | ||
retainedmemtestdevice = &retainedmem0; | ||
}; | ||
}; | ||
|
||
&cpuapp_sram { | ||
/* Shrink SRAM size to avoid overlap with retained memory region: | ||
* 511 - 4 = 507KB = 0x7ec00 | ||
*/ | ||
reg = <0x20000000 DT_SIZE_K(507)>; | ||
ranges = <0x0 0x20000000 0x7ec00>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters