Skip to content
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

soc: lowrisc: opentitan: Fix manifest sizing #84166

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion soc/lowrisc/opentitan/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ config NUM_IRQS
# The OpenTitan SoC requires a manifest in front of the
# application binary.
config ROM_START_OFFSET
default 0x404
default 0x400

endif # SOC_OPENTITAN
2 changes: 1 addition & 1 deletion soc/lowrisc/opentitan/rom_header.S
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GTEXT(__rom_header)
* 0x6c47 (minor). The manifest format is documented here:
* https://github.com/lowRISC/opentitan/blob/689a163294e1791bd30cfe096decf7f9233abad4/sw/host/opentitanlib/src/image/manifest.rs#L205
*/
SECTION_FUNC(rom_header, __rom_header)
SECTION_VAR(rom_header, __rom_header)
.rept(225)
.word 0
.endr
Expand Down
Loading