IronSide SE ABI compatibility
Application Binary Interface (ABI) compatibility defines how software components, such as libraries and applications, interact at the machine code level through their low-level binary interface. This includes:
Function-calling conventions
Data structure layouts in memory
Exception handling mechanisms
Register usage conventions
When ABI compatibility is maintained, binaries of one component can interface correctly with another without requiring recompilation. For example, adding a new function to a library is typically an ABI-compatible change, as existing binaries remain functional. However, changes that affect data structure layouts, such as altering field order or size, break ABI compatibility because they change the memory layout expected by existing binaries.
This page describes the ABI compatibility between the nRF Connect SDK and the IronSide SE binaries.
ABI compatibility for the nRF54H20 IronSide SE binaries
To use the most recent version of the nRF Connect SDK, always download and provision your nRF54H20 SoC-based device with the latest nRF54H20 IronSide SE binaries available.
For information on legacy versions of the nRF54H20 SoC binaries based on SUIT, see Legacy ABI compatibility matrix for the nRF54H20 SoC binaries.
Caution
The nRF54H20 IronSide SE binaries do not support rollbacks to previous versions.
Provisioning the nRF54H20 SoC
To provision the nRF54H20 SoC using the nRF54H20 IronSide SE binaries, see Bring-up step: Disable onboard J-Link Mass Storage Device (MSD).
Updating the nRF54H20 SoC
To update the nRF54H20 IronSide SE binaries to the latest version, see Updating IronSide SE.
nRF54H20 IronSide SE binaries changelog
The following sections provide detailed lists of changes by component.
IronSide Secure Enclave (IronSide SE) v23.8.0+33
Added
Support for the Nordic nRF Global Software Watchdog Timer (GSWDT). You can enable this feature through the Zephyr driver using the
cpuapp_gswdtdevicetree node.
Fixed
An issue where using the LFRC would break the System Controller’s monitoring of stalled MRAM transactions.
Decoupled the TEMPERATURE and MRAM handlers to prevent the MRAM monitor from timing out and skipping MRAM checks. The MRAM monitor now triggers every 11 s.
IronSide Secure Enclave (IronSide SE) v23.7.0+30
Added
Added
ironside_se_mpcconf_radioram_access()to the MPCCONF service API, enabling access to the radio domain RAM from the application core for bootloader purposes.
Updated
IronSide SE resilience against MRAM corruption is improved, as secure domain CPU bus faults now trigger snapshot recovery. (NCSDK-37077) Corruption in other file systems used by IronSide SE will also trigger snapshot recovery.
IronSide SE now re-requests snapshot recovery during boot if SDROM reports that snapshot recovery failed. (NCSDK-38309)
Fixed
Adaptive body biasing (ABB) is now enabled before the system frequency is increased. (NCSDK-39151) Operating at high frequencies without ABB violated the system specifications at extreme temperature corners and could lead to resets during boot.
The Global Resource Control (GRC) active power domain is now forced to remain always on. This incurs a negligible increase in current consumption, but is expected to fix a corner case issue where the device would hang until reset.
Renamed IronSide Secure Element to IronSide Secure Enclave, aligning with the standard terminology.
IronSide Secure Enclave (IronSide SE) v23.6.0+29
Added
Support for
UICR.SNAPSHOT_REGIONSto configure user-defined snapshot regions. This is only relevant when snapshot is enabled and configured in OTP.L2CACHE can now be disabled with PERIPHCONF to mitigate HMPAN-234 and HMPAN-242. The L2CACHE is enabled by default. (NCSDK-38144)
Updated
The secure domain clock frequency now matches the application domain clock frequency. Previously the secure domain always ran at 64 MHz, but it now matches the application domain frequency, which is at least 64 MHz and usually much higher. This change is expected to significantly improve the IronSide SE CPU and cryptographic accelerator performance. (NCSDK-38284)
CRACEN ECC operation countermeasures are now enabled (
CONFIG_CRACEN_ECC_COUNTERMEASURES=y). (NCSDK-38269)
IronSide Secure Enclave (IronSide SE) v23.5.0+28
Added
Support for snapshot services, which offer APIs to capture and recover system MRAM and NVR region contents. The support is currently limited to system-critical regions configured by IronSide SE. The snapshot functionality must be enabled and configured in OTP before using these APIs. (NCSDK-37077)
IronSide SE now automatically performs a snapshot recovery operation when an error is detected in a system-critical region. (NCSDK-37077)
IronSide Secure Enclave (IronSide SE) v23.4.0+27
Added
Support for UICR.MPCCONF to set up static access permissions for global domain memory. This is currently limited to OVERRIDE configuration in MPC110 (restricting access for global domain RAM0x and MRAM1x only). It requires UICR.VERSION to be at least 2.2. (NCSDK-37095)
MPCCONF service providing APIs for reading and writing the same MPC registers as
UICR.MPCCONF. These APIs enable extension or replacement of the static configuration viaUICR.MPCCONF. (NCSDK-37095)
Updated
Support for managing MRAMC110.CONFIGNVR.PAGE[1] through UICR.PERIPHCONF and the PERIPHCONF service, allowing for permission management (for example, setting MRAM10 NVR page 1 as read-only). (NCSDK-35891)
IronSide Secure Enclave (IronSide SE) v23.3.0+26
Added
Added the PERIPHCONF service, which offers APIs for reading from and writing to the peripheral registers that are managed through UICR.PERIPHCONF. The service APIs can be used to load a new PERIPHCONF binary after boot and enable dynamic runtime management of the PPIB, IPCMAP, IRQMAP, and GPIO pin CTRLSEL configuration. (NCSDK-34192)
Fixed
psa_hash_compare,psa_verify_message, andpsa_mac_verifynow support overlapping buffers as mandated by the PSA Crypto API specification. (NCSDK-34253)
IronSide Secure Enclave (IronSide SE) v23.2.1+25
Added
Added support for event reports and the event enable service. These features provide mechanisms for forwarding error events from the SPU, MPC, and MRAMC peripherals to local domains. (NCSDK-32170)
The System Controller now periodically monitors for stalled transactions targeting MRAM, and triggers a global reset to recover from this condition.
Updated
SysCtrl updated to v6.1.0.
Enabling radio upscale mode now additionally requests operation with no MRAM latency.
Disabled data prefetching in the L2CACHE.
Fixed
An issue with corrupted temperature measurements when sampled too soon after boot.
PSA Vendor key ID
0x7fffc001now refers to the correct IAK per local domain. (NRFX-8427)
IronSide Secure Enclave (IronSide SE) v23.1.2+21
Fixed
An issue in the temperature service that could delay sending temperature responses. (NCSDK-36336)
Updated
Reduced MRAM latency when requesting
no latencywhile MRAM was powered off by powering MRAM on immediately. (NRFX-8740)
IronSide Secure Enclave (IronSide SE) v23.1.1+20
Fixed
L2CACHE now prefetches several cache lines when an L2 cache miss occurs. (HM-26346) This improves L2 cache performance in some situations and reduces it in others.
Fixed an unintentional behavior of
psa_copy_key()when used to create a revocable key. (NCSDK-36369)
IronSide Secure Enclave (IronSide SE) v23.1.0+19
Added
LFXO external square support in SysCtrl.
Counter service for monotonic counters with PSA ITS storage backend.
Note
This service can only be used on devices that have booted at least once with an unlocked UICR with this version.
The IronSide boot reports now contain a 16-byte UUID extracted from the OTP. (NRFX-8171)
Defined a new category of platform keys, called revocable keys. (NCSDK-35397)
These are general-purpose, persistent keys which can be provisioned using the PSA Crypto API, but only when the UICR is unlocked. When the UICR is locked, destroying a revocable key will prevent it from being created again. Using these keys does not depend on the
UICR.SECURESTORAGEconfiguration.
Updated
The MRAMC.READY/READYNEXT registers are now readable by local domains. (NCSDK-35534)
This allows local domains to check if MRAM is ready for a write operation before triggering it.
The IronSide SE update now fails if it is placed outside the valid memory range (0x0e100000 - 0x0e200000). (NCSDK-35750)
The IronSide SE PSA crypto service now supports 3 concurrent crypto operations. (NCSDK-35671)
This enables support for TLS.
An invalid enumeration for the processor in UICR.SECONDARY.PROCESSOR is now reported with a uicr_regid equal to the offset of that register.
The NRFS (SysCtrl) IPC buffers for the Application core and Radio core can now only be accessed when the secure attribute is set.
SysCtrl updated to v6.0.1.
SysCtrl has updated calibration thresholds for LFRC.
IronSide Secure Enclave (IronSide SE) v23.0.2+17
Added
SHA1 support. (NCSDK-35321) This feature corresponds to the
PSA_WANT_ALG_SHA_1CRACEN PSA cryptographic primitive.For more information, see Supported cryptographic operations in the nRF Connect SDK.
IronSide Secure Enclave (IronSide SE) v23.0.1+16
Changed
The domain-specific built-in keys identified by
CRACEN_BUILTIN_*_ID. (NCSDK-35202)The way IronSide SE treats the
UICR.VERSIONfield. (NCSDK-35253)The erase value is now interpreted as the highest supported UICR format version. Other values must match a supported version or cause a boot error. Currently, only version 2.0 (
0x00020000) is supported.IronSide SE no longer disables RETAIN for every GPIO pin at boot. (NCSDK-35080)
Pins are now retained when the application boots, and the application must disable retention before using them.
UICR.LOCKcan now be set inLCS_EMPTYwithout hindering LFCLK calibration. (NCSDK-34458)
Fixed
EXMIF XIP region is now accessible. (NCSDK-35256)
IronSide Secure Enclave (IronSide SE) v23.0.0+15
Added
IronSide SE now supports the following CRACEN PSA cryptographic primitives:
PSA_WANT_GENERATE_RANDOMPSA_WANT_ALG_CTR_DRBGPSA_WANT_ALG_CBC_PKCS7PSA_WANT_ALG_CBC_NO_PADDINGPSA_WANT_ALG_CCMPSA_WANT_ALG_CHACHA20_POLY1305PSA_WANT_ALG_CMACPSA_WANT_ALG_CTRPSA_WANT_ALG_DETERMINISTIC_ECDSAPSA_WANT_ALG_ECB_NO_PADDINGPSA_WANT_ALG_ECDHPSA_WANT_ALG_ECDSAPSA_WANT_ALG_ECDSA_ANYPSA_WANT_ALG_GCMPSA_WANT_ALG_HKDFPSA_WANT_ALG_HMACPSA_WANT_ALG_JPAKEPSA_WANT_ALG_PBKDF2_HMACPSA_WANT_ALG_PBKDF2_AES_CMAC_PRF_128PSA_WANT_ALG_PURE_EDDSAPSA_WANT_ALG_SHA_256PSA_WANT_ALG_SHA_384PSA_WANT_ALG_SHA_512PSA_WANT_ALG_SHA3_256PSA_WANT_ALG_SHA3_384PSA_WANT_ALG_SHA3_512PSA_WANT_ALG_SHAKE256_512PSA_WANT_ALG_SP800_108_COUNTER_CMACPSA_WANT_ALG_SPAKE2P_HMACPSA_WANT_ALG_SPAKE2P_CMACPSA_WANT_ALG_SPAKE2P_MATTERPSA_WANT_ALG_TLS12_ECJPAKE_TO_PMSPSA_WANT_ALG_TLS12_PRFPSA_WANT_ALG_TLS12_PSK_TO_MSPSA_WANT_ALG_HKDF_EXTRACTPSA_WANT_ALG_HKDF_EXPANDPSA_WANT_ALG_ED25519PHPSA_WANT_ECC_MONTGOMERY_255PSA_WANT_ECC_SECP_R1_256PSA_WANT_ECC_SECP_R1_384PSA_WANT_ECC_SECP_R1_521PSA_WANT_ECC_TWISTED_EDWARDS_255PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_GENERATEPSA_WANT_KEY_TYPE_ECC_KEY_PAIR_IMPORTPSA_WANT_KEY_TYPE_ECC_KEY_PAIR_EXPORTPSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVEPSA_WANT_KEY_TYPE_ECC_PUBLIC_KEYPSA_WANT_KEY_TYPE_AESPSA_WANT_AES_KEY_SIZE_128PSA_WANT_AES_KEY_SIZE_256PSA_WANT_KEY_TYPE_CHACHA20PSA_WANT_KEY_TYPE_PASSWORDPSA_WANT_KEY_TYPE_PASSWORD_HASHPSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_DERIVEPSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_EXPORTPSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_IMPORTPSA_WANT_KEY_TYPE_SPAKE2P_KEY_PAIR_GENERATEPSA_WANT_KEY_TYPE_SPAKE2P_PUBLIC_KEY
For more information, see Supported cryptographic operations in the nRF Connect SDK.
Support for a secondary boot mode. (NCSDK-32171)
The secondary mode lets you define a separate application firmware that is started on boot error or when requested over IPC. This is configured through the
UICR.SECONDARYregisters and can be used for recovery or updates.Support for
UICR.WDTSTART, which can be used to automatically start a local domain watchdog ahead of the application boot. (NCSDK-35046)Support for PSA Internal Trusted Storage (ITS). (NCSDK-18548)
It is configured through the following
UICR.SECURESTORAGEregisters:UICR.SECURESTORAGE.CRYPTO- Enables persistent key storage for the PSA Crypto API.UICR.SECURESTORAGE.ITS- Enables the PSA ITS API for managing other sensitive assets.UICR.SECURESTORAGE.ENABLEandUICR.SECURESTORAGE.ADDRESS- Required to enable one or both features.
Support for the IronSide SE DVFS service, replacing the NRFS DVFS service. (NRFX-7321)
Updated
Renamed the release artifact from
sysctrl.hextoironside_se.hexto correctly reflect its content.
Removed
NRFS DVFS service support.
IronSide Secure Enclave (IronSide SE) v22.2.0+14
Added
Support for disabling and enabling USB D+ pull-up control to ensure VBUS-detected IRQs are received.
Changed
Enabled IPC unbound feature.
Improved power consumption.
Improved stability.
Removed
Temperature subscription
IronSide Secure Enclave (IronSide SE) v22.1.0+13
Added support for configuring TDD (CoreSight++) from local domains. (NCSDK-33486)
IronSide Secure Enclave (IronSide SE) v22.0.4+12
Fixed
An issue where the device became stuck in recovery mode after performing a recovery upgrade. (NCSDK-34258)
An issue where the eraseall operation, on a device in LCS ROT, was permitted regardless of the contents of UICR. (NCSDK-34232)
An issue where the recovery firmware would incorrectly determine that UICR was corrupted. (NCSDK-32241)
Updated
sysctrl to 5.0.1: stability improvements.
IronSide Secure Enclave (IronSide SE) v22.0.3+11
Fixed
psa_crypto:
Bytes written are now correctly returned (in place of buffer size). (NCSDK-34172)
Added missing ECC_MONTGOMERY_255 configuration. (NCSDK-34200)
Passing 0-sized buffers are now allowed for optional arguments. (NCSDK-34171).
The default owner ID of some peripherals, where previously it was set to SECURE or SYSCTRL instead of APPLICATION. (NCSDK-34187)
IronSide Secure Enclave (IronSide SE) v22.0.2+10
Fixed missing CIPHER support in the PSA crypto service.
IronSide Secure Enclave (IronSide SE) v22.0.1+9
No functional change. Version bump to verify update with live versions.
IronSide Secure Enclave (IronSide SE) v22.0.0+8
Added
This release is now signed with Nordic keys. The SWD connection is still required to update IronSide using official tools. For more information, run
west ncs-ironside-se-update --help. A backward LCS transition is not required to update IronSide.Added support for
UICR.PROTECTEDMEM, which enables integrity checking of an immutable bootloader.
Updated
Increased the size of USLOT (IronSide + sysctrl) to 120 kB.
Increased the size of RSLOT (IronSide recovery firmware) to 20 kB.
Enabled downgrade protection for IronSide in debug builds.
Changed the owner ID used in the default global domain SPU configurations from
NONEtoAPPLICATION. This means that all peripherals and split-ownership registers are accessible by the application core, PPR and FLPR by default. UseUICR.PERIPHCONFto grant the radio core access to global domain peripherals.
IronSide Secure Enclave (IronSide SE) v21.1.1
Updated to not require CHIDX values to be set when configuring
PPIB_SUBSCRIBE_SENDorPPIB_PUBLISH_RECEIVEthroughPERIPHCONF.Fixed an issue where the application core was booted despite the presence of boot errors.
IronSide Secure Enclave (IronSide SE) v21.1.0
Added
MAC in the PSA Crypto service.
Static memory checks that protect Nordic assets by whitelisting only memory ranges available to the application developers.
System Controller Firmware (SCFW) releases in the IronSide SE releases. See System Controller Firmware (SCFW) v5.0.0 for details.
Updated
The CPUCONF service request definition.
The CPU and WAIT parameters are now both packed into the first 4-byte value, and the message data is sent inline in the request.
Support for initializing a subset of global domain peripherals by configuring
UICR.PERIPHCONF. This enables the initial configuration of the CTRLSEL GPIO pin, global IRQ mapping, IPC mapping, global PPIBs, and more.UICR.PERIPHCONFreintroduces functionality that was previously available with specializedUICR.*registers, but with a lower-level interface that is more powerful, flexible, and future proof.
System Controller Firmware (SCFW) v5.0.0
Added
SWEXT service.
Updated
Reduced MRAM auto power down timeout (helps with lower power usage).
GRCCONF module code optimization.
IPC communication code optimization (Zephyr IPC service used directly without additional queue).
Fixed higher power consumption when clock switcher changed to LFRC.
IronSide Secure Enclave (IronSide SE) v21.0.1
Added
Boot report to be written to radio core. (NCSDK-33583)
Updated
Enable link-time optimization.
Disable CRACEN microcode loading. (NCSDK-32173)
Fixed
The application core is now started in halted mode when IronSide SE detects errors in the UICR or BICR. (NCSDK-33306) This allows recovery from such errors by writing correct values using a debugger.
IronSide Secure Enclave (IronSide SE) v21.0.0
Added
Support for the IronSide SE update service. (NCSDK-32173) This service allows updating IronSide SE firmware using the
west ncs-ironside-se-updatecommand. The update is performed over SWD, and the device must be in a debug mode.Experimental support for a new UICR format. (NCSDK-32444) At this stage, the functionality is mainly for internal testing and development, and user tools for interacting with UICR will be added at a later stage.
Boot report support. (NCSDK-32393)
CPUCONF service for booting the radio core. (NCSDK-32925) Currently, only
hello worldis supported.IronSide calls, the successor to SSF. (NCSDK-32441).
Updated
The limited PSA Crypto API is now implemented as an IronSide call. (NCSDK-32912) This replaces the temporary IPC mechanism from the last release.
Fixed
An issue that set the CTRLAP.BOOTSTATUS firmware sequence number always to zero. (NCSDK-33265)
IronSide Secure Enclave (IronSide SE) v20.1.0
Added
Added experimental support for a limited PSA Crypto API service. This is built on top of a temporary IPC mechanism which will soon be replaced. The top-level interface will remain the same. (NCSDK-32163)
The PSA Crypto API support through the IronSide Secure Enclave implementation is currently limited to the following
PSA_WANTsymbols for cryptographic feature selection:PSA_WANT_GENERATE_RANDOMPSA_WANT_ALG_SHA_256PSA_WANT_ALG_SHA_512PSA_WANT_ALG_GCMPSA_WANT_ALG_ECDSAPSA_WANT_ALG_ECDHPSA_WANT_ALG_ED25519PHPSA_WANT_ECC_SECP_R1_256PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEYPSA_WANT_KEY_TYPE_ECC_KEY_PAIR_IMPORTPSA_WANT_KEY_TYPE_ECC_KEY_PAIR_EXPORTPSA_WANT_KEY_TYPE_ECC_KEY_PAIR_GENERATEPSA_WANT_KEY_TYPE_ECC_KEY_PAIR_DERIVE
To use the service, set the
CONFIG_NRF_SECURITYtoy. For more information on the implementations available in the cryptographic drivers, see the Cryptographic drivers.Note
The v20.1.0 support for this PSA Certified Crypto API is not compatible with nRF Connect SDK v3.0.0 or v3.1.0. It is only compatible with the
sdk-nrfrevision1b2abb07b8b2528ecaf86f54e0c6cf48c425055a.
Updated
EXTRAVERSIONis now included inSICR.TBS.x.VERSION.
IronSide Secure Enclave (IronSide SE) v20.0.1
Updated
AUX-AP to be always disabled.
Internal optimization of MRAM and RAM usage.
Removed
Initializing TDD on system boot as it is not retained.
Initializing P6 and P7 pins to be EXMIF/TPIU to prevent unacceptable output states.
IronSide Secure Enclave (IronSide SE) v20.0.0
This is the first release that is based on the new Secure Domain firmware architecture. Most of the functionality from the preceding version of SDFW has been disabled or removed and will be gradually reintroduced in upcoming versions.
Added
Support for the
ERASEALLcommand through the boot command interface. (NCSDK-31997)Support for the
DEBUGWAITcommand through the boot command interface.A new scheme for status reporting through the BOOTSTATUS register in CTRL-AP. (NCSDK-32355)
Updated
SCFW to be included in the URoT firmware partition. Additionally, the SysCtrl CPU is always started. (NCSDK-31993)
SDFW to not start the radio core. The application core is now always started with the secure VTOR set to the first address following the IronSide SE partitions. (NCSDK-31995)
SDFW to statically configure the device at boot so that most resources are accessible by the application core without needing to modify the UICR. (NCSDK-31999)
Removed (from legacy SUIT-based SDFW)
SSF and all SSF services have been disabled. (NCSDK-32000)
Resource configuration based on UICR has been disabled. (NCSDK-31999)
The SDFW ADAC interface has been disabled. (NCSDK-31994)
SUIT is no longer supported. (NCSDK-31996)
nRF54H20 SoC binaries v0.9.6 changelog
The following sections provide detailed lists of changes by component.
Secure Domain Firmware (SDFW) v10.3.3
Updated BINDESC to a new version.
Secure Domain Firmware (SDFW) v10.3.1
Added
Enabled pulling of Secure Domain images during SUIT manifest processing.
Fixed
Adjusted file URIs to prevent SUIT envelope size overflow.
Resolved an issue where the IPUC write setup was being erased, ensuring proper SUIT AB operation.
System Controller Firmware (SCFW) v4.2.3
Removed changing
VREG1V0 VOUTfor the high-power radio in power management temperature monitoring. The actual value is now set by the SysCtrl ROM from FICR.
System Controller Firmware (SCFW) v4.2.1
Updated PCRM configuration to set the BLE active parameter to
0x0E.
System Controller Firmware (SCFW) v4.2.0
Updated the
PCRM.LOADvalue for radio on-demand operations using dedicated VEVIF channels.Implemented a workaround for ICPS-1304.
System Controller Firmware (SCFW) v4.1.0
Added
Audio PLL service for local domains.
LFRC support.
Updated
Clock initialization tree to support a new 32k clock source - LFRC.
Removed
Split image partition.
nRF54H20 SoC binaries v0.9.2 changelog
The following sections provide detailed lists of changes by component.
Secure Domain Firmware (SDFW) v10.2.0
Updated SUIT to support defining the SUIT cache in Nordic manifests.
Secure Domain Firmware (SDFW) v10.1.0
Added
GPIO DRIVECTRL for P6 and P7 on nRF54H20 is now corrected by SDFW on boot. This addresses an issue where some devices has this incorrectly configured.
Added support for TLS-1.3 in the PSA crypto service.
Added support for ED25519 pre-hashed in the PSA crypto service.
The SDFW now uses a watchdog timer with a timeout of 4 seconds.
Purge protection can be enabled over ADAC.
Clock control is enabled in SDFW.
Global domain power request service is integrated in SDFW.
PUF values from SDROM are cleared on boot.
Updated
A local domain reset now triggers a global reset.
RESETINFOcontains both the global and local reset reasons.All processors now boot regardless of whether they have firmware. If no firmware is present, they boot in halted mode.
Reduced power consumption from the Secure Domain when tracing is enabled.
Increased the number of possible concurrent PSA operations to 8.
The ETR buffer location is now read from the UICR. Enabling ETR tracing now requires configuring the location.
The SDFW no longer immediately resets on a fatal error.
Removed
Several services from SSF over ADAC.
Reset event service.
Fixed
An issue where SDFW exited the sleep state for a short duration after boot completion.
An issue where replies to ADAC SSF commands contained a large amount of additional zero values at the end of the message.
An issue where permission checks for pointer members in the SSF PSA crypto service requests were incorrect.
An issue with invoking crypto service from multiple threads or clients.
System Controller Firmware (SCFW) v4.0.3
Updated LRC to now use a direct GDPWR request.
Fixed an issue with USB D+ pull-up.
System Controller Firmware (SCFW) v4.0.2
Added
GDFS service: New service implementation to handle change of global domain frequency on demand (HSFLL120).
GDPWR service: New power domains.
Updated
Improved stability.
GDPWR service: Renamed power domains.
GPIO power configuration:
When
POWER.CONFIG.VDDAO1V8 == External, the functionpower_bicr_is_any_gpio_powered_from_internal_1v8_regnow returnsfalse. This allows proper selection of low power modes when supplying nRF54H20 with an external 1.8V, even if theVDDIO_xare configured as SHORTED.
Temperature sensor coefficients.
Legacy ABI compatibility matrix for the nRF54H20 SoC binaries
The following table illustrates the legacy ABI compatibility between SUIT-based (pre-IronSide SE) nRF54H20 SoC binaries and older versions of the nRF Connect SDK:
Caution
Devices already provisioned using SUIT-based SoC binaries and in LCS
RoTcannot be upgraded to IronSide SE.
nRF Connect SDK versions |
Compatible nRF54H20 SoC binaries version based on SUIT (no longer usable with the newest nRF Connect SDK versions) |
|---|---|
nRF Connect SDK v3.0.0 |
nRF54H20 SoC binaries v0.9.6, compatible with the nRF54H20 DK v0.9.0 and later DK revisions. |
nRF Connect SDK v2.9.0-nRF54H20-1 |
nRF54H20 SoC binaries v0.9.2, compatible with the nRF54H20 DK v0.9.0 and later DK revisions. |
nRF Connect SDK v2.9.0 |
nRF54H20 SoC binaries v0.7.0 for EngC DKs, compatible with the nRF54H20 DK v0.8.3 and later DK revisions. |
nRF Connect SDK v2.8.0 |
nRF54H20 SoC binaries v0.7.0 for EngC DKs, compatible with the nRF54H20 DK v0.8.3 and later DK revisions. nRF54H20 SoC binaries v0.7.0 for EngB DKs, compatible with the nRF54H20 DKs ranging from v0.8.0 to v0.8.2. |
nRF Connect SDK v2.7.99-cs2 |
nRF54H20 SoC binaries v0.6.5 |
nRF Connect SDK v2.7.99-cs1 |
nRF54H20 SoC binaries v0.6.2 |
nRF Connect SDK v2.7.0 |
nRF54H20 SoC binaries v0.5.0 |
nRF Connect SDK v2.6.99-cs2 |
nRF54H20 SoC binaries v0.3.3 |