Skip to content

Commit 767c5e8

Browse files
committed
[nrf noup] boot/zephyr: add nrf54h20dk ext flash configs
This commit adds overlay and configuration files for the nRF54H20 DK with external flash support. Signed-off-by: Michal Kozikowski <[email protected]>
1 parent 46d7e22 commit 767c5e8

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright (c) 2025 Nordic Semiconductor ASA
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
#
5+
6+
CONFIG_SPI=y
7+
CONFIG_FLASH=y
8+
CONFIG_BOOT_MAX_IMG_SECTORS_AUTO=n
9+
CONFIG_BOOT_MAX_IMG_SECTORS=512
10+
CONFIG_FLASH_MSPI_NOR_LAYOUT_PAGE_SIZE=4096
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/delete-node/ &slot1_partition;
8+
9+
/ {
10+
chosen {
11+
nordic,pm-ext-flash = &mx25uw63;
12+
};
13+
};
14+
15+
&mx25uw63 {
16+
status = "okay";
17+
partitions {
18+
compatible = "fixed-partitions";
19+
#address-cells = <1>;
20+
#size-cells = <1>;
21+
22+
slot1_partition: partition@0 {
23+
label = "image-1";
24+
reg = <0x0 DT_SIZE_K(336)>;
25+
};
26+
};
27+
};

0 commit comments

Comments
 (0)