-
Notifications
You must be signed in to change notification settings - Fork 734
[nrf noup] Kconfig: Add support for relocation pattern in nRF54H20 #3526
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
Conversation
|
Rebased |
| If 'fw-to-relocate' chosen node exists, the firmware will be loaded | ||
| from the MRAM partition it points to, but will run from the TCM region | ||
| specified by 'zephyr,code-partition'. | ||
| Otherwise, uses standard code-partition - sram calculation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"sram" could probably be uppercase, like other abbreviations?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those are names so added " ' " symbol
This update introduces a new configuration option to automatically calculate the Load Memory Address (LMA) adjustment for firmware relocation. If the 'fw-to-relocate' chosen node exists, the firmware will load from the MRAM partition it points to and run from the specified TCM region. Otherwise, it defaults to the standard code-partition calculation. Signed-off-by: Jan Zyczkowski <jan.zyczkowski@nordicsemi.no>
Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-zephyr#3526 Signed-off-by: Nordic Builder <pylon@nordicsemi.no>
| config CODE_DATA_RELOCATION | ||
| default y if PM || POWEROFF | ||
|
|
||
| # Support for firmware relocation pattern (load from MRAM, run from TCM) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may be beneficial to check if we can define it under nrf/soc/nordic/nrf54h
|
Will place this part in nrf repository - closing PR |
This update introduces a new configuration option to automatically calculate the Load Memory Address (LMA) adjustment for firmware relocation. If the 'fw-to-relocate' chosen node exists, the firmware will load from the MRAM partition it points to and run from the specified TCM region. Otherwise, it defaults to the standard code-partition calculation.