STM32H755 Security settings
Hello, I have an STM32H755 nucleo board and I want to use the secure memory area features but I need to clarify my understanding of the reference manual "rm0399" and some follow up questions.
My understanding is that:
- From my normal code (non-secure) in standard mode you enable secure access mode.
- Then an MCU reset is triggered.
- Then from my normal code in secure access mode I call RSS_resetAndInitializeSecureAreas that is mentioned in page 258 in the reference manual with the memory area I need to setup to be my secure code and this request triggers a reset.
- After reset the MCU enters the RSS ROM instead of my normal boot code and then it jumps to my secure code that won't exit it until the API RSS_exitSecureArea.
Q1: If I don't call the RSS_exitSecureArea can I keep the secure code running on CM7, Can I run a normal non-secure application on CM4?
Q2: Does the RSS have a feature to authenticate a bootloader code and if the answer is yes, where is that documented?
