| 94e1be2b | 02-Apr-2023 |
Stephan Gerhold <stephan@gerhold.net> |
feat(bl32): print entry point before exiting SP_MIN
BL31 prints information about the entry point in the normal world before exiting, but for some reason SP_MIN does not do that. Add the missing cal
feat(bl32): print entry point before exiting SP_MIN
BL31 prints information about the entry point in the normal world before exiting, but for some reason SP_MIN does not do that. Add the missing call to print_entry_point_info() for more consistency.
Change-Id: I2f4961fec57fcc9955cd15652d4ceba3bbb32375 Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
show more ...
|
| 56055e87 | 17-Apr-2023 |
Stephan Gerhold <stephan@gerhold.net> |
fix(bl32): avoid clearing argument registers in RESET_TO_SP_MIN case
RESET_TO_SP_MIN is also used by platforms with a non TF-A bootloader, in which case there might be platform-specific arguments pa
fix(bl32): avoid clearing argument registers in RESET_TO_SP_MIN case
RESET_TO_SP_MIN is also used by platforms with a non TF-A bootloader, in which case there might be platform-specific arguments passed in the CPU registers. At the moment these are cleared and cannot be used by the platform layer.
For BL31 this was recently changed in "fix(bl31): avoid clearing of argument registers in RESET_TO_BL31 case", but on AArch32 SP_MIN still has the old behavior.
Make this consistent by preserving the registers in SP_MIN as well and use the chance to clarify the existing comments a bit.
Change-Id: I0039c72477249eed76c3da23cb4f10ac59b310d0 Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
show more ...
|
| 3cad06b3 | 26-Jan-2023 |
Chris Kay <chris.kay@arm.com> |
build(tsp): sort sections by alignment by default
This change forces LD to sort all input sections by alignment when allocating them within an output section. This is done in some places explicitly
build(tsp): sort sections by alignment by default
This change forces LD to sort all input sections by alignment when allocating them within an output section. This is done in some places explicitly in the linker scripts today, but this makes sure we don't miss any easy targets.
Change-Id: Id702a2a572f2b43c77d53634ddc64b0220d2560b Signed-off-by: Chris Kay <chris.kay@arm.com>
show more ...
|