-
Notifications
You must be signed in to change notification settings - Fork 7.2k
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
mgmt: mcumgr: handle merged TF-M applications #77972
Comments
Not sure I fully understand the bug, the image you want to upload that is merged, is that one contagious area with just one MCUboot header/trailer/signature for the whole area, or 2? If it is 2, you cannot upload it as a single file. Or do you mean that the _ns partitions are not used by MCUmgr? |
The image is one contiguous area, with a single header and trailer. In essence, In fact I suspect (but have not tested) that this is broken for |
My plan on resolving this downstream is to tweak how the partitions are defined so that mcumgr gets a handle to the complete flash area, while still preserving the secure/nonsecure partitioning for other tooling:
The |
I think we should separate partitioning from board definitions and provide something like partitioning profiles, for example: default, mcuboot and tfm, that would be given to a build as an option. |
Where would these profiles live, and how would they handle a secondary image that lives on external flash? |
I had two ideas for that, one was that every board defines these profiles that it is supposed to work with, as overlays - probably a lot of work. I have already off-line talk with @nordicjm regarding above and see how hard that would be to implement. One of the reasons I wanted to have at least the mcuboot and default profile was so that both mcuboot and non-mcuboot builds would use |
Is your enhancement proposal related to a problem? Please describe.
The current image management implementation cannot handle TF-M applications that use a merged secure and non-secure application from the perspective of the bootloader (
TFM_MCUBOOT_IMAGE_NUMBER == 1
).The flash area logic only refer to the secure partitions:
zephyr/subsys/mgmt/mcumgr/grp/img_mgmt/src/zephyr_img_mgmt.c
Lines 29 to 34 in ca48767
zephyr/boards/nordic/nrf9151dk/nrf9151dk_nrf9151_common.dtsi
Lines 216 to 243 in ca48767
This results in the mcumgr commands trying to read the image header from the start of the secure flash (correct, but currently triggers a SecureFault) and the image trailer from the end of secure flash (incorrect, also triggers a SecureFault).
Describe the solution you'd like
The image management handlers should be updated to pull information from the correct flash areas (distinct from the slot ID) when built with TFM. This breaks the current assumptions that a single slot ID has a single corresponding flash area ID.
The text was updated successfully, but these errors were encountered: