Skip to content

Commit

Permalink
doc: Release notes for 2.9.0-nRF54H20-1-rc2
Browse files Browse the repository at this point in the history
Added release notes for 2.9.0-nRF54H20-1-rc2.
Added migration guide for 2.9.0-nRF54H20-1-rc2.
Added other release edits for 2.9.0-nRF54H20-1-rc2.

Signed-off-by: Francesco Domenico Servidio <francesco.servidio@nordicsemi.no>
  • Loading branch information
FrancescoSer authored and nordicjm committed Feb 18, 2025
1 parent efedd56 commit cbeb54f
Show file tree
Hide file tree
Showing 37 changed files with 415 additions and 256 deletions.
1 change: 1 addition & 0 deletions doc/nrf/app_dev/device_guides/nrf54h/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Zephyr and the |NCS| provide support and contain board definitions for developin
ug_nrf54h20_architecture
ug_nrf54h20_configuration
ug_nrf54h20_suit_dfu
ug_nrf54h20_keys
ug_nrf54h20_logging
ug_nrf54h20_debugging
ug_nrf54h20_custom_pcb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,10 @@ This figure shows the states and transitions (both forward and backward ones) th

Changing the lifecycle state will be useful during development.
Test devices in their final configuration would require the device to be in the deployed state, however, updating the Secure Domain firmware and the System Controller firmware will be easier with the device in RoT state.

For more information, see the following pages:

* :ref:`ug_nrf54h20_gs`
* :ref:`ug_nrf54h20_custom_pcb`
* :ref:`ug_nrf54h20_suit_dfu`
* :ref:`ug_nrf54h20_keys`
12 changes: 7 additions & 5 deletions doc/nrf/app_dev/device_guides/nrf54h/ug_nrf54h20_gs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ Getting started with the nRF54H20 DK
:local:
:depth: 2

This document gets you started with your nRF54H20 Development Kit (DK) using the |NCS|.
This document gets you started with your nRF54H20 Development Kit (DK) using the |NCS| for the first time.
It tells you how to install the :zephyr:code-sample:`sysbuild_hello_world` sample and perform a quick test of your DK.

If you are migrating from an earlier version of the |NCS|, see :ref:`migration_guides`.

.. _ug_nrf54h20_gs_requirements:

Minimum requirements
Expand Down Expand Up @@ -138,7 +140,7 @@ Installing nRF Util and its commands
Using the nRF54H20 DK with the |NCS| version |release| requires the following:

* nRF Util v7.13.0 or higher
* nRF Util ``device`` command v2.7.10
* nRF Util ``device`` command v2.7.14
* nRF Util ``trace`` command v3.1.0
* nRF Util ``suit`` command v0.9.0

Expand All @@ -163,11 +165,11 @@ If you have not already installed nRF Util as part of :ref:`nRF Connect SDK prer
For more information, consult the `Upgrading nRF Util core module`_ documentation.

#. Install the required versions of nRF Util commands, as listed above, using the command from `Installing specific versions of nRF Util commands`_.
For example, the following command installs the nRF Util ``device`` command version 2.7.10:
For example, the following command installs the nRF Util ``device`` command version 2.7.14:

.. code-block::
nrfutil install device=2.7.10 --force
nrfutil install device=2.7.14 --force
.. _ug_nrf54h20_gs_bringup:

Expand Down Expand Up @@ -209,7 +211,7 @@ After programming the BICR, program the nRF54H20 SoC with the :ref:`nRF54H20 SoC
This bundle contains the precompiled firmware for the :ref:`Secure Domain <ug_nrf54h20_secure_domain>` and :ref:`System Controller <ug_nrf54h20_sys_ctrl>`.
To program the nRF54H20 SoC binaries to the nRF54H20 DK, do the following:

1. Download the `nRF54H20 SoC Binaries v0.8.0`_, compatible with the nRF54H20 DK v0.9.0 and later revisions.
1. Download the `nRF54H20 SoC binaries v0.9.1`_, compatible with the nRF54H20 DK v0.9.0 and later revisions.

.. note::
On MacOS, ensure that the ZIP file is not unpacked automatically upon download.
Expand Down
87 changes: 87 additions & 0 deletions doc/nrf/app_dev/device_guides/nrf54h/ug_nrf54h20_keys.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
.. _ug_nrf54h20_keys:

Provisioning keys on the nRF54H20 SoC
#####################################

.. contents::
:local:
:depth: 2

The keys provisioning workflow for the nRF54H20 SoC consists of two main steps:

1. Generating the required metadata using a script provided with the |NCS|.
#. Provisioning the keys to the nRF54H20 SoC.

.. note::
The nRF54H20 SoC must be in RoT lifecycle state for key provisioning to work.
For more details on lifecycle states, see :ref:`ug_nrf54h20_architecture_lifecycle`.

Generating the keys
===================

A script is used to generate the necessary cryptographic keys, BLOBs, and metadata required for provisioning.
The script follows the PSA Crypto standard to generate the required 28-byte key.
It is located in the :file:`nrf/scripts/generate_psa_key_attributes.py` file.

To generate the keys, follow these steps:

1. Generate private keys using Ed25519::

openssl genpkey -algorithm Ed25519 -out MANIFEST_APPLICATION_GEN1_priv.pem
openssl genpkey -algorithm Ed25519 -out MANIFEST_RADIOCORE_GEN1_priv.pem
openssl genpkey -algorithm Ed25519 -out MANIFEST_OEM_ROOT_GEN1_priv.pem

#. Extract public keys::

openssl pkey -in MANIFEST_APPLICATION_GEN1_priv.pem -pubout -out MANIFEST_APPLICATION_GEN1_pub.pem
openssl pkey -in MANIFEST_RADIOCORE_GEN1_priv.pem -pubout -out MANIFEST_RADIOCORE_GEN1_pub.pem
openssl pkey -in MANIFEST_OEM_ROOT_GEN1_priv.pem -pubout -out MANIFEST_OEM_ROOT_GEN1_pub.pem

#. Check the required key IDs::

MANIFEST_PUBKEY_APPLICATION_GEN1 = 0x40022100
MANIFEST_PUBKEY_APPLICATION_GEN2 = 0x40022101
MANIFEST_PUBKEY_APPLICATION_GEN3 = 0x40022102
MANIFEST_PUBKEY_OEM_ROOT_GEN1 = 0x4000AA00
MANIFEST_PUBKEY_OEM_ROOT_GEN2 = 0x4000AA01
MANIFEST_PUBKEY_OEM_ROOT_GEN3 = 0x4000AA02
MANIFEST_PUBKEY_RADIOCORE_GEN1 = 0x40032100
MANIFEST_PUBKEY_RADIOCORE_GEN2 = 0x40032101
MANIFEST_PUBKEY_RADIOCORE_GEN3 = 0x40032102

#. Create a JSON input file with the ``generate_psa_key_attributes.py`` script:

* For the application core::

python generate_psa_key_attributes.py --usage VERIFY_MESSAGE_EXPORT --id 0x40022100 --type ECC_TWISTED_EDWARDS --size 255 --algorithm EDDSA_PURE --location PERSISTENT_CRACEN --key-from-file MANIFEST_APPLICATION_GEN1_pub.pem --file all_keys.json --cracen_usage RAW

* For the radio core::

python generate_psa_key_attributes_new.py --usage VERIFY_MESSAGE_EXPORT --id 0x40032100 --type ECC_TWISTED_EDWARDS --size 255 --algorithm EDDSA_PURE --location PERSISTENT_CRACEN --key-from-file MANIFEST_RADIOCORE_GEN1_pub.pem --file all_keys.json --cracen_usage RAW

* For the main root manifest::

python generate_psa_key_attributes_new.py --usage VERIFY_MESSAGE_EXPORT --id 0x4000AA00 --type ECC_TWISTED_EDWARDS --size 255 --algorithm EDDSA_PURE --location PERSISTENT_CRACEN --key-from-file MANIFEST_OEM_ROOT_GEN1_pub.pem --file all_keys.json --cracen_usage RAW


The generated key data is stored in a JSON file, which serves as an input for the next step.

Provisioning the keys
=====================

nRF Util is used to provision the generated keys into the target device.
It takes the JSON file as input and injects it without validating its contents.
In this scenario, nRF Util functions as a transport layer, transferring the key data to the correct location in the device.

The Secure Domain Firmware on the device handles the actual key provisioning using PSA Crypto's ``psa_import_key`` function.
Provisioning a key calls the function to import the key:

* The ``metadata`` field from the JSON file is used for the function's attributes argument
* The ``value`` field is passed to the function's data argument
* The function's ``data_length`` is set to the length of the value field.

To provision the keys from ``all_keys.json`` onto the KMU of the nRF54H20 SoC, use nRF Util as follows::

nrfutil device x-provision-nrf54h-keys --serial-number <snr> --key-file all_keys.json

For more information on how to provision keys, see the `Provisioning keys for hardware KMU`_ page in the nRF Util documentation.
2 changes: 1 addition & 1 deletion doc/nrf/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# General configuration --------------------------------------------------------

project = "nRF Connect SDK"
copyright = "2019-2024, Nordic Semiconductor"
copyright = "2019-2025, Nordic Semiconductor"
author = "Nordic Semiconductor"
version = release = os.environ.get("DOCSET_VERSION")

Expand Down
4 changes: 2 additions & 2 deletions doc/nrf/dev_model_and_contributions/adding_code.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ This is demonstrated by the following code, that would be placed somewhere in yo
- name: nrf
repo-path: sdk-nrf
remote: ncs
revision: 2.9.0-nRF54H20-rc1
revision: 2.9.0-nRF54H20-1-rc2
import: true
self:
path: application
Expand All @@ -189,7 +189,7 @@ For example:
projects:
- name: nrf
remote: ncs
revision: 2.9.0-nRF54H20-rc1
revision: 2.9.0-nRF54H20-1-rc2
import: true
# Example for how to override a repository in the nRF Connect SDK with your own:
- name: mcuboot
Expand Down
21 changes: 11 additions & 10 deletions doc/nrf/links.txt
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@
.. _`nRF Connect SDK latest documentation`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/index.html

.. _`known issues page on the main branch`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/known_issues.html
.. _`known issues for nRF Connect SDK v2.9.0-nRF54H20-rc1`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/known_issues.html?v=v2-9-0-nRF54H20-rc1
.. _`known issues for nRF Connect SDK v2.9.0-nRF54H20-1-rc2`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/known_issues.html?v=v2-9-0-nRF54H20-1-rc2
.. _`known issues for nRF Connect SDK v2.9.0`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/known_issues.html?v=v2-9-0
.. _`known issues for nRF Connect SDK v2.8.0`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/known_issues.html?v=v2-8-0
.. _`known issues for nRF Connect SDK v2.7.0`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/known_issues.html?v=v2-7-0
Expand Down Expand Up @@ -492,7 +492,7 @@

.. _`nRF socket options`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrfxlib/nrf_modem/doc/sockets.html

.. _`Repositories and revisions for v2.9.0-nRF54H20-rc1`: https://docs.nordicsemi.com/bundle/ncs-2.9.0-nrf54h20-rc1/page/nrf/releases_and_maturity/repository_revisions.html
.. _`Repositories and revisions for v2.9.0-nRF54H20-1-rc2`: https://docs.nordicsemi.com/bundle/ncs-2.9.0-nRF54H20-1-rc2/page/nrf/releases_and_maturity/repository_revisions.html
.. _`Repositories and revisions for v2.9.0`: https://docs.nordicsemi.com/bundle/ncs-2.9.0/page/nrf/releases_and_maturity/repository_revisions.html
.. _`Repositories and revisions for v2.8.0`: https://docs.nordicsemi.com/bundle/ncs-2.8.0/page/nrf/releases_and_maturity/repository_revisions.html
.. _`Repositories and revisions for v2.7.99-cs2`: https://docs.nordicsemi.com/bundle/ncs-2.7.99-cs2/page/nrf/releases_and_maturity/repository_revisions.html
Expand Down Expand Up @@ -587,7 +587,7 @@
.. _`LwM2M carrier library changelog for v1.9.0`: https://docs.nordicsemi.com/bundle/ncs-1.9.0/page/nrf/libraries/bin/lwm2m_carrier/CHANGELOG.html

.. _`Migration guide for nRF Connect SDK v3.0.0`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_guide_3.0.html
.. _`Migration guide for nRF Connect SDK v2.9.0-nRF54H20-rc1`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_guide_2.9.0-nrf54h20-rc1.html
.. _`Migration guide for nRF Connect SDK v2.9.0-nRF54H20-1-rc2`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_guide_2.9.0-nRF54H20-1-rc2.html
.. _`Migration guide for nRF Connect SDK v2.9.0`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_guide_2.9.html
.. _`Migration guide for nRF Connect SDK v2.8.0`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_guide_2.8.html
.. _`Migration guide for nRF Connect SDK v2.7.0`: https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_guide_2.7.html
Expand Down Expand Up @@ -871,6 +871,7 @@
.. _`Programming application firmware using MCUboot serial recovery`: https://docs.nordicsemi.com/bundle/nrfutil/page/nrfutil-device/guides/programming_firmware_thingy91.html
.. _`Programming application firmware on the nRF54L15 SoC`: https://docs.nordicsemi.com/bundle/nrfutil/page/nrfutil-device/guides/programming_nrf54L15.html
.. _`Upgrading modem firmware using J-Link`: https://docs.nordicsemi.com/bundle/nrfutil/page/nrfutil-device/guides/programming_modem_9160.html
.. _`Provisioning keys for hardware KMU`: https://docs.nordicsemi.com/bundle/nrfutil/page/nrfutil-device/guides/provisioning_keys.html

.. _`anomaly 19`: https://docs.nordicsemi.com/bundle/errata_nRF5340_EngA/page/ERR/nRF5340/EngineeringA/latest/anomaly_340_19.html

Expand Down Expand Up @@ -1591,8 +1592,8 @@

.. ### Source: files.nordicsemi.com

.. _`Twister test report for nRF Connect SDK v2.9.0-nRF54H20-rc1`: https://files.nordicsemi.com/ui/api/v1/download/contentBrowsing/NCS/external/release/v2.9.0-nrf54h20-rc1/test-report/twister_test_results_report.html?isNativeBrowsing=true
.. _`Hardware test report for nRF Connect SDK v2.9.0-nRF54H20-rc1`: https://files.nordicsemi.com/ui/api/v1/download/contentBrowsing/NCS/external/release/v2.9.0-nrf54h20-rc1/test-report/common_ncs_test_results_report.html?isNativeBrowsing=true
.. _`Twister test report for nRF Connect SDK v2.9.0-nRF54H20-1-rc2`: https://files.nordicsemi.com/ui/api/v1/download/contentBrowsing/NCS/external/release/v2.9.0-nrf54h20-1-rc2/test-report/twister_test_results_report.html?isNativeBrowsing=true
.. _`Hardware test report for nRF Connect SDK v2.9.0-nRF54H20-1-rc2`: https://files.nordicsemi.com/ui/api/v1/download/contentBrowsing/NCS/external/release/v2.9.0-nrf54h20-1-rc2/test-report/common_ncs_test_results_report.html?isNativeBrowsing=true
.. _`Twister test report for nRF Connect SDK v2.9.0`: https://files.nordicsemi.com/ui/api/v1/download/contentBrowsing/NCS/external/release/v2.9.0/test-report/twister_test_results_report.html?isNativeBrowsing=true
.. _`Hardware test report for nRF Connect SDK v2.9.0`: https://files.nordicsemi.com/ui/api/v1/download/contentBrowsing/NCS/external/release/v2.9.0/test-report/common_ncs_test_results_report.html?isNativeBrowsing=true
.. _`Twister test report for nRF Connect SDK v2.8.0`: https://files.nordicsemi.com/ui/api/v1/download/contentBrowsing/NCS/external/release/v2.8.0/test-report/twister_test_results_report.html?isNativeBrowsing=true
Expand Down Expand Up @@ -1782,12 +1783,12 @@

.. _`curl`: https://curl.se/

.. _`nRF54H20 SoC Binaries v0.3.3`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.3.3.zip
.. _`nRF54H20 SoC Binaries v0.5.0`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.5.0.zip
.. _`nRF54H20 SoC Binaries v0.6.2`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.6.2.zip
.. _`nRF54H20 SoC binaries v0.3.3`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.3.3.zip
.. _`nRF54H20 SoC binaries v0.5.0`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.5.0.zip
.. _`nRF54H20 SoC binaries v0.6.2`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.6.2.zip
.. _`nRF54H20 SoC binaries v0.6.5`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.6.5.zip
.. _`nRF54H20 SoC Binaries v0.7.0 for EngC DKs`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.7.0_engc.zip
.. _`nRF54H20 SoC Binaries v0.7.0 for EngB DKs`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.7.0_engb.zip
.. _`nRF54H20 SoC binaries v0.7.0 for EngC DKs`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.7.0_engc.zip
.. _`nRF54H20 SoC binaries v0.7.0 for EngB DKs`: https://files.nordicsemi.com/artifactory/SDSC/external/nrf54h20_soc_binaries_v0.7.0_engb.zip
.. _`nRF54H20 SoC binaries v0.8.0`: https://files.nordicsemi.com/ui/native/SDSC/external/nrf54h20_soc_binaries_v0.8.0.zip
.. _`nRF54H20 SoC binaries v0.9.1`: https://files.nordicsemi.com/ui/native/SDSC/external/nrf54h20_soc_binaries_v0.9.1.zip

Expand Down
4 changes: 2 additions & 2 deletions doc/nrf/protocols/matter/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ For a full list of |NCS| and Matter versions, view the following table:
+--------------------------+-----------------------------------------------------+------------------------+
| nRF Connect SDK version | Matter specification version | Matter SDK version |
+==========================+=====================================================+========================+
| v2.9.99 (latest) | :ref:`1.4.0 <ug_matter_overview_dev_model_support>` | 1.4.0.0 |
| |release| | :ref:`1.4.0 <ug_matter_overview_dev_model_support>` | 1.4.0.0 |
+--------------------------+ | |
| |release| | | |
| v2.9.0-nRF54H20-1-rc2 | | |
+--------------------------+ | |
| v2.9.0 | | |
+--------------------------+-----------------------------------------------------+------------------------+
Expand Down
26 changes: 15 additions & 11 deletions doc/nrf/releases_and_maturity/abi_compatibility.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. _abi_compatibility:

ABI Compatibility
ABI compatibility
#################

.. contents::
Expand All @@ -18,7 +18,7 @@ When ABI compatibility is maintained, binaries of one component can interface co
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 as they change the memory layout expected by existing binaries.

ABI Compatibility Matrix for the nRF54H20 SoC Binaries
ABI compatibility matrix for the nRF54H20 SoC binaries
******************************************************

The following table illustrates ABI compatibility between different versions of the nRF54H20 SoC binaries and the |NCS|:
Expand All @@ -29,27 +29,31 @@ The following table illustrates ABI compatibility between different versions of
* - |NCS| versions
- Compatible nRF54H20 SoC binaries version
* - |NCS| v2.9.0-nRF54H20-1-rc2
- `nRF54H20 SoC Binaries v0.9.1`_, compatible with the nRF54H20 DK v0.9.0 and later revisions.
- `nRF54H20 SoC binaries v0.9.1`_, compatible with the nRF54H20 DK v0.9.0 and later revisions.
* - |NCS| v2.9.0
- `nRF54H20 SoC Binaries v0.7.0 for EngC DKs`_, compatible with the nRF54H20 DK v0.8.3 and later revisions.
- `nRF54H20 SoC binaries v0.7.0 for EngC DKs`_, compatible with the nRF54H20 DK v0.8.3 and later revisions.
* - |NCS| v2.8.0
- `nRF54H20 SoC Binaries v0.7.0 for EngC DKs`_, compatible with the nRF54H20 DK v0.8.3 and later revisions.
`nRF54H20 SoC Binaries v0.7.0 for EngB DKs`_, compatible with the nRF54H20 DKs ranging from v0.8.0 to v0.8.2.
- `nRF54H20 SoC binaries v0.7.0 for EngC DKs`_, compatible with the nRF54H20 DK v0.8.3 and later revisions.
`nRF54H20 SoC binaries v0.7.0 for EngB DKs`_, compatible with the nRF54H20 DKs ranging from v0.8.0 to v0.8.2.
* - |NCS| v2.7.99-cs2
- `nRF54H20 SoC Binaries v0.6.5`_
- `nRF54H20 SoC binaries v0.6.5`_
* - |NCS| v2.7.99-cs1
- `nRF54H20 SoC Binaries v0.6.2`_
- `nRF54H20 SoC binaries v0.6.2`_
* - |NCS| v2.7.0
- `nRF54H20 SoC Binaries v0.5.0`_
- `nRF54H20 SoC binaries v0.5.0`_
* - |NCS| v2.6.99-cs2
- `nRF54H20 SoC Binaries v0.3.3`_
- `nRF54H20 SoC binaries v0.3.3`_

ABI compatibility ensures that the Secure Domain and System Controller firmware binaries do not need to be recompiled each time the application, radio binaries, or both are recompiled, as long as they are based on a compatible |NCS| version.
Additionally, maintaining ABI compatibility allows the nRF54H20 SoC binary components to work together without recompilation when updating to newer |NCS| versions.

nRF54H20 SoC Binaries v0.9.1 changelog
nRF54H20 SoC binaries v0.9.1 changelog
**************************************

.. note::
The nRF54H20 SoC binaries only support specific versions of the |NCS| and do not support rollbacks to a previous version.
Upgrading the nRF54H20 SoC binaries on your development kit might break the DK's compatibility with applications developed for previous versions of the |NCS|.

The following sections provide detailed lists of changes by component.

Secure Domain Firmware (SDFW) v10.1.0
Expand Down
Loading

0 comments on commit cbeb54f

Please sign in to comment.