Skip to content

Commit b5c58f4

Browse files
committed
boards: nrf54h20dk: move start of application owned memory
IronSide SE reserves all memory up to 0x0e030000, update memory map accordingly. Signed-off-by: Håkon Amundsen <[email protected]>
1 parent dc68239 commit b5c58f4

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

boards/nordic/nrf54h20dk/Kconfig.defconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ config FLASH_LOAD_OFFSET
2222
# This is meant to span 'cpuapp_boot_partition' and 'cpuapp_slot0_partition'
2323
# in the default memory map.
2424
config FLASH_LOAD_SIZE
25-
default 0x64000
25+
default 0x62000
2626

2727
endif # !USE_DT_CODE_PARTITION
2828

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20-memory_map.dtsi

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -200,16 +200,16 @@
200200
#address-cells = <1>;
201201
#size-cells = <1>;
202202

203-
cpuapp_boot_partition: partition@2c000 {
204-
reg = <0x2c000 DT_SIZE_K(64)>;
203+
cpuapp_boot_partition: partition@30000 {
204+
reg = <0x30000 DT_SIZE_K(64)>;
205205
};
206206

207-
cpuapp_slot0_partition: partition@3c000 {
208-
reg = <0x3c000 DT_SIZE_K(336)>;
207+
cpuapp_slot0_partition: partition@40000 {
208+
reg = <0x40000 DT_SIZE_K(328)>;
209209
};
210210

211-
cpurad_slot0_partition: partition@90000 {
212-
reg = <0x90000 DT_SIZE_K(336)>;
211+
cpurad_slot0_partition: partition@92000 {
212+
reg = <0x92000 DT_SIZE_K(328)>;
213213
};
214214

215215
cpuppr_code_partition: partition@e4000 {
@@ -221,15 +221,15 @@
221221
};
222222

223223
cpuapp_slot1_partition: partition@100000 {
224-
reg = <0x100000 DT_SIZE_K(336)>;
224+
reg = <0x100000 DT_SIZE_K(328)>;
225225
};
226226

227-
cpurad_slot1_partition: partition@154000 {
228-
reg = <0x154000 DT_SIZE_K(336)>;
227+
cpurad_slot1_partition: partition@152000 {
228+
reg = <0x152000 DT_SIZE_K(328)>;
229229
};
230230

231-
storage_partition: partition@1a8000 {
232-
reg = <0x1a8000 DT_SIZE_K(40)>;
231+
storage_partition: partition@1a4000 {
232+
reg = <0x1a4000 DT_SIZE_K(40)>;
233233
};
234234

235235
periphconf_partition: partition@1b2000 {

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp_0_9_0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ toolchain:
1010
- zephyr
1111
sysbuild: true
1212
ram: 256
13-
flash: 400
13+
flash: 392
1414
supported:
1515
- adc
1616
- can

boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpurad_0_9_0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ toolchain:
1010
- zephyr
1111
sysbuild: true
1212
ram: 192
13-
flash: 336
13+
flash: 328
1414
supported:
1515
- counter
1616
- gpio

0 commit comments

Comments
 (0)