-
Notifications
You must be signed in to change notification settings - Fork 322
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
Transfer rimage git history to subdirectory tools/rimage/ in the sof git repo #8297
Conversation
This adds the necessary bits to allow building rimage with CMake with similar configure options as the just removed autotools files. Also update README.md for new build instructions. Signed-off-by: Daniel Leung <danielcp@gmail.com>
This reflects the changes on SOF project commit b3c1679. Signed-off-by: Daniel Leung <danielcp@gmail.com>
Since both fw.h and manifest.h are being used in the main SOF repo and also here in the standalone rimage repo, to prevent them getting out of sync, the SOF main repo is going to use the ones coming from the rimage repo. So there is no need for the option anymore. Signed-off-by: Daniel Leung <danielcp@gmail.com>
Code formatting should be consistent and function arguments should be aligned to opening parenthesis. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Unused arguments shouldn't be passed to function because it makes code messy. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This changes the LICENSE file to match the LICENSE file from the main SOF repo, except they entries for the kconfig scripts which are not here in this repo. Signed-off-by: Daniel Leung <danielcp@gmail.com>
Fixes following error when compiling code: ... src/elf.c: In function ‘elf_find_section’: src/elf.c:469:20: error: initialization discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 469 | Elf32_Ehdr *hdr = &module->hdr; | ^ cc1: all warnings being treated as errors ... Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Fixes issue ".init_array" is not copied to ri image making it zero filled. This causes Zephyr crashing trying to execute functions from this section. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Enable simple build test for rimage. Signed-off-by: Pan Xiuli <xiuli.pan@linux.intel.com>
In many functions there is need to read user section content and check firmware version or write section content to some manifest or dictionary. Previously to do it, in each function was loop to search for proper section in proper module, then allocate buffer, read content and check for possible error between each step what is quite overwhelming. After change there will be one function responsible for this task. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Extended manifest is a place to store metadata about firmware, known during compilation time - for example firmware version or used compiler. Given information are read on host side before firmware startup. This part of output binary is not signed. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This name is used in different part of source code so should refer to single place instead by copied. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Such a solution improve code hermentization and flexibility. Also such a solution is more relevant because of focus on particular module during section reading, so there won't be possibility to implicity scan section 'A' from first module and section 'B' from second one. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
elf_read_section() returns section size when everything is ok, so ret value should be reset to 0 after this function call Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Try to build extended manifest only when `e` flag will be set, to prevent error and warning printing during creating optional part of formware image. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
ret variable is always set in elf_read_section(), to initial value is not important. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This part of binary should contain valid firmware version. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Sometimes they will be different and this will make developer aware of the differences Signed-off-by: Adrian Bonislawski <adrian.bonislawski@linux.intel.com>
some sections may use different lma than vma address, in such case rimage needs to use lma Signed-off-by: Adrian Bonislawski <adrian.bonislawski@linux.intel.com>
Generator is part of rimage tool and there is any reference to them in kernel source code, so it should be moved out of kernel folder. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Because there is possibility to reference headers from this repo from another one, there is a need to put every header into rimage namespace. Otherwise reference to headers from duplicated namespace (like kernel) from external repo may be ambiguous. Update guard ifdef/define/endif sequence value, to make it more unique Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Path added to include should end at 'include' as usual, then it is easy to see where specific headers comes from during reading source code. It is especially important for projects composed from a few parts, like firmware, driver, build and debug tools in this project. Moreover changed "" to <> in include directives because there is specified full path to file from project include root and to be aligned with code style from firmware repository, Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Unlike hardcoded target_compile_options(-g) can be overriden from the command line, from the parent ExternalProject_Add(CMAKE_ARGS) (tested) or from a CMake GUI (not tested). Default to Debug because the time spent running rimage is negligible compared to building the image to sign and because the time saved learning CMake when it crashes can be huge for some people. BTW -O2 -g is rarely ever useful. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This makes the write_firmware NULL pointer added by commit dd77445 and corresponding crash more user-friendly. Before: Program received signal SIGSEGV, Segmentation fault. After: rimage: src/rimage.c:197: main: Assertion `image.adsp->write_firmware' failed. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This feature is not used by SOF anyway and only causes FW load failures, we can set it to 0xffff so it will work for ADL+ platforms. Signed-off-by: Janusz Jankowski <janusz.jankowski@linux.intel.com>
TOML aims to be a minimal configuration file format that's easy to read due to obvious semantics. TOML is designed to map unambiguously to a hash table. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This part should be moved to separate function, to allow easily add another way of machine description. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
Exported function will be used in configuration parser, to assign correct function version depending on manifest versiony Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
This allow to add new platform with old version of rimage tool. Default values are easily to define for any fields, so fields duplication in config files should be reduced. Signed-off-by: Karol Trzcinski <karolx.trzcinski@linux.intel.com>
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.
LGTM
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.
Thanks, Marc
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.
Impressive work!
Merged with a direct push, closing the PR. |
Note you can easily import/cherry-pick code changes from the old standalone rimage repo into SOF: cd sof
git remote add old-location rimage
git fetch old-location
git cherry-pick HEAD..old-location/main This works because I imported the whole rimage history and because file renames are very easy for git to find in this particular case. |
glad to see im not the only one who likes to preserve history :) |
DO NOT "REBASE and MERGE" this PR! See below.
This PR merges rimage back into the sof git repo, see #8178, #7270 + others why.
The Github interface has always struggled with large PRs. It also shows the oldest commits first :-( But some of it can still be used: go to the "Files Changed" tab, click on "Changes from all commits" then scroll all the way down past all the original rimage commits. Then review only the last 8 commits, one by one.
Every commit can build Zephyr, XTOS and user space tools. It is possible to
git checkout
back and forth across this transfer without any submodule error and git bisectability is preserved. Each commit was tested one by one in test PR #8286DO NOT "REBASE and MERGE" this PR!
This PR includes the entire rimage history (about 300 commits) thanks to
git merge --allow-unrelated-histories
. Trying to rebase merge commits fails at best and results in some non-sensical git history at worse. So, do not "rebase and merge" this PR, it must be merged as is. If that's not possible, a maintainer with WRITE permission must manually push it like this:cc: