How to start with STM32CubeMX Secure Manager on STM32H57

Under construction.png Coming soon

The purpose of this article is to show an integration of Secure Manager in ecosystem using STM32CubeMX.


Read Secure Manager for STM32H5 before starting the practical example described below.

Below the boot scheme that will be produced during this step by step article.

SECURITY SM Boot scheme.png


1. Introduction

2. Prerequisites

  • Hardware
    • STM32H573 discovery board: the STM32H573 devices have all the available security features, including the HW crypto accelerator. (Note: the Secure Manager is not supported for STM32H56x devices, the HW crypto is not available)
    • Discovery MB1677- STM32H573 (USB-C cable not included)
Figure 1 STM32H573-DK MB1677.png
  • In case your board has already been used for other handsons:
    • Perform a regression in case the board is in another state than OPEN (using the script provided for the last handson done).
    • If the board is in OPEN state, verify that the SECBOOT_LOCK option byte is not set (use STM32CubeProgrammer).
  • Required tools
    • STM32Cube_H5_V1.1.0 with STM32Cube_H5_V1.1.1 patch, or later
    • STM32CubeProgrammer_rev2.14.0 or more recent (with STM32TrustedPackageCreator (TPC) selected at installation).
    • One of the supported IDE:
      • EWARM (IAR) : V9.20.1 and the patch EWARMv8_STM32H5xx_V1.1.0 or later to support the STM32H5 series
      • STM32CubeIDE : 1.13.0 or later
      • MDK_ARM : V5.37.0.0 and the patch Keil_STM32H5_DFP.1.0.0 or later to support the STM32H5 series
    • Tera Term / Putty or equivalent UART terminal emulator.

The IDE patches can be found in the STM32CubeFW_H5 Cube firmware:

Figure 2 IDE patches in STM32CubeH5 Firmware Package
  • STM32Cube Firmware
    • Download the STM32CubeFW_H5 Cube firmware
      • With STM32Cube_H5_V1.1.0 you must also download the STM32Cube_H5_V1.1.1 patch and copy all the files into V1.1.0
      • For later STM32Cube_H5_V1.1.x, when available, it is delivered as a single zip file.
    • A directory STM32H573I-DK is included in the “Projects” directory
    • If the STM32CubeProgrammer is not installed in the default folder:
      • C:\Program Files\STMicroelectronics\STM32Cube\STM32CubeProgrammer.
      • The customized installation path must be updated in the environment variable: env.bat (see the example in the figure below).
Figure 3 STM32CubeProgrammer installation path to update in env.bat file

3. Configuration of the project with STM32CubeMX

3.1. Setting up the STM32CubeMX project

Launch STM32CubeMX

  1. Click on Access to MCU Selector (for this example, it's easier to enable only the necessary GPIOs, so it's advised to use the MCU selector instead of the board selector).
  2. Enter STM32H573 in Commercial part number
  3. Select the device used in STM32H5-DK.
  4. Click start project.
  5. Enable TrustZone, as shown in Figure 3. (For the STiROT boot path, TrustZone needs to be enabled.)


SECURITY STM32CubeMX MCU selector.png


Create the STM32CubeMX project:

  1. Go to Project Manager tab
  2. Type the name of the project (if it doesn't already exist, the related folder will be created).
  3. Choose a folder for the project (avoid a long path).
  4. Select the relevant toolchain; for this example EWARM is used.
SECURITY STM32CubeMX project parameters SM.png


Secure project

  1. Check only the NonSecure Project checkbox
SECURITY STM32CubeMX project non secure SM.png

Save Project

  1. Go to File > Save Project. The project folder (if it doesn't already exist) and the Secure_Manager_Integration.ioc file will be created.
SECURITY STM32CubeMX save pj SM 2.png

3.2. Boot path configuration

To configure the boot path proceed as follows:

  • 1) Click on "Boot Path and Debug Authentication".
  • 2) Click on "Select".
SECURITY STM32CubeMX boot path selection SM.png


  • 1) Select the ST immutable Root of Trust. The TZ activation is already chosen. This selection defines the UBE option byte (but you do not need to take care of the setting of this option byte).
  • 2) Click on "Next".
  • 3) Select Updatable Root of Trust(since for this example there is a second uRoT boot stage).
  • 4) Click on "Next".
  • 5) Select Secure Manager Non Secure Application.
  • 6) Click Finish.
SECURITY STM32CubeMX boot path SM.png



When clicking Finish ROT_Provisioning is added to the project. Boot path configuration is done :

SECURITY STM32CubeMX boot path selection OK SM 2.png


3.3. Modify the default clocking

SECURITY STM32CubeMX clock SM.png

3.4. USART1 configuration to display events to the terminal

3.4.1. USART1 Configuration

SECURITY STM32CubeMX USART1 config SM.png

3.4.2. Mapping of the USART1

  • Change PB6 to PA9
SECURITY STM32CubeMX USART1 mapping PA9 SM.png
  • Change PB7 to PA10
SECURITY STM32CubeMX USART1 mapping PA10 SM.png

3.5. Configure and activate RTC

SECURITY STM32CubeMX RTC config SM.png


3.6. Activate the ICACHE

SECURITY STM32CubeMX ICACHE SM.png

3.7. Code generation

SECURITY STM32CubeMX generate code SM.png
SECURITY STM32CubeMX Folder Project CubeMX SM.png

4. Secure Manager Provisioning

SECURITY STM32CubeMX Provisioning script folder SM.png

5. User application modification and generation

5.1. Project configuration

5.2. Build the application

SECURITY STM32CubeMX build userr app SM.png