Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "iron" board variant #2643

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion boards/nordic/nrf54h20dk/Kconfig.nrf54h20dk
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
# SPDX-License-Identifier: Apache-2.0

config BOARD_NRF54H20DK
select SOC_NRF54H20_CPUAPP if BOARD_NRF54H20DK_NRF54H20_CPUAPP
select SOC_NRF54H20_CPUAPP if (BOARD_NRF54H20DK_NRF54H20_CPUAPP || \
BOARD_NRF54H20DK_NRF54H20_CPUAPP_IRON)
select SOC_NRF54H20_CPURAD if BOARD_NRF54H20DK_NRF54H20_CPURAD
select SOC_NRF54H20_CPUPPR if (BOARD_NRF54H20DK_NRF54H20_CPUPPR || \
BOARD_NRF54H20DK_NRF54H20_CPUPPR_XIP)
select SOC_NRF54H20_CPUFLPR if (BOARD_NRF54H20DK_NRF54H20_CPUFLPR || \
BOARD_NRF54H20DK_NRF54H20_CPUFLPR_XIP)
select SOC_NRF54H20_IRON if BOARD_NRF54H20DK_NRF54H20_CPUAPP_IRON
2 changes: 2 additions & 0 deletions boards/nordic/nrf54h20dk/board.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ board:
cpucluster: cpuppr
- name: xip
cpucluster: cpuflpr
- name: iron
cpucluster: cpuapp
revision:
format: major.minor.patch
default: "0.9.0"
Expand Down
36 changes: 36 additions & 0 deletions boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp_iron.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Copyright (c) 2025 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/

#include "nrf54h20dk_nrf54h20_cpuapp.dts"

/delete-node/&cpurad_rx_partitions;
/delete-node/&cpuapp_rx_partitions;
/delete-node/&cpusec_cpuapp_ipc;

/* This is not yet an exhaustive memory map, and contain only a minimum required to boot
* the application core.
*/

&mram1x {
cpuapp_rx_partitions: cpuapp-rx-partitions {
compatible = "nordic,owned-partitions", "fixed-partitions";
nordic,access = <NRF_OWNER_ID_APPLICATION NRF_PERM_RXS>;
#address-cells = <1>;
#size-cells = <1>;

cpuapp_slot0_partition: partition@2c000 {
reg = <0x2c000 DT_SIZE_K(480)>;
};

cpuppr_code_partition: partition@a4000 {
reg = <0xa4000 DT_SIZE_K(64)>;
};

cpuflpr_code_partition: partition@b4000 {
reg = <0xb4000 DT_SIZE_K(48)>;
};
};
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright (c) 2025 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0

identifier: nrf54h20dk/nrf54h20/cpuapp/iron
name: nRF54H20-DK-nRF54H20-Application (IRONside compatible) (revision 0.9.0)
type: mcu
arch: arm
toolchain:
- gnuarmemb
- xtools
- zephyr
sysbuild: true
ram: 256
flash: 480
supported:
- adc
- can
- counter
- gpio
- i2c
- pwm
- retained_mem
- spi
- watchdog
- usbd
31 changes: 31 additions & 0 deletions boards/nordic/nrf54h20dk/nrf54h20dk_nrf54h20_cpuapp_iron_defconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Copyright (c) 2025 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0

# Enable UART driver
CONFIG_SERIAL=y

# Enable console
CONFIG_CONSOLE=y
CONFIG_UART_CONSOLE=y

CONFIG_USE_DT_CODE_PARTITION=y

# Enable MPU
CONFIG_ARM_MPU=y

# Enable hardware stack protection
CONFIG_HW_STACK_PROTECTION=y

# MPU-based null-pointer dereferencing detection cannot be applied
# as the (0x0 - 0x400) region is unmapped for this target.
CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y

# Enable cache
CONFIG_CACHE_MANAGEMENT=y
CONFIG_EXTERNAL_CACHE=y

# Enable GPIO
CONFIG_GPIO=y

# UICR generation is not supported, and when reintroduced will not use nrf-regtool.
CONFIG_NRF_REGTOOL_GENERATE_UICR=n
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
* Copyright 2025 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/

&wdt010 {
status = "okay";
};
7 changes: 5 additions & 2 deletions scripts/west_commands/runners/nrf_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,11 @@ def program_hex(self):
)

if self.erase:
self.exec_op('erase', core='Application', kind='all')
self.exec_op('erase', core='Network', kind='all')
if self.build_conf.get('CONFIG_SOC_NRF54H20_IRON'):
self.exec_op('erase', kind='all')
else:
self.exec_op('erase', core='Application', kind='all')
self.exec_op('erase', core='Network', kind='all')

# Manage SUIT artifacts.
# This logic should be executed only once per build.
Expand Down
5 changes: 5 additions & 0 deletions soc/nordic/nrf54h/Kconfig.soc
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,10 @@ config SOC_NRF54H20_CPUFLPR
help
nRF54H20 CPUFLPR

config SOC_NRF54H20_IRON
bool
help
Indicates that local domain firmware is compatible with Nordic IRONside SE.

config SOC
default "nrf54h20" if SOC_NRF54H20
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/*
* Copyright (c) 2025 Nordic Semiconductor
* SPDX-License-Identifier: Apache-2.0
*/

#include "nrf54h20dk_nrf54h20_common.dtsi"
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Disable dcache
CONFIG_DCACHE=n
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
* Copyright 2025 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/

&wdt010 {
status = "okay";
};
Loading