Skip to content

Commit efedd56

Browse files
ahasztagnordicjm
authored andcommitted
suit: Allow RAM sink to write to radio memory
Needed for writing to radio TCM. Signed-off-by: Artur Hadasz <[email protected]>
1 parent 080349a commit efedd56

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

subsys/suit/memory_layout/src/suit_memory_layout.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,18 @@ static struct ram_area ram_area_map[] = {
8888
.ra_size = DT_REG_SIZE(DT_NODELABEL(cpuapp_ram0)),
8989
},
9090
#endif /* cpuapp_ram0 */
91+
#if (DT_NODE_EXISTS(DT_NODELABEL(cpurad_ram0x_region))) /* nrf54H20 */
92+
{
93+
.ra_start = DT_REG_ADDR(DT_NODELABEL(cpurad_ram0x_region)),
94+
.ra_size = DT_REG_SIZE(DT_NODELABEL(cpurad_ram0x_region)),
95+
},
96+
#endif /* ram0x */
97+
#if (DT_NODE_EXISTS(DT_NODELABEL(cpurad_ram0))) /* nrf54H20 */
98+
{
99+
.ra_start = DT_REG_ADDR(DT_NODELABEL(cpurad)),
100+
.ra_size = DT_REG_SIZE(DT_NODELABEL(cpurad_ram0)),
101+
},
102+
#endif /* cpurad_ram0 */
91103
#if (DT_NODE_EXISTS(DT_NODELABEL(shared_ram20_region))) /* nrf54H20 */
92104
{
93105
.ra_start = DT_REG_ADDR(DT_NODELABEL(shared_ram20_region)),

0 commit comments

Comments
 (0)