arch/x86: Align _start16bit with C_ENVIRONMENT_BOOBLOCK
Followup removes SIPI_VECTOR_IN_ROM and it seems reasonable enough to force the alignment unconditionally to page size. Reason for the conditionals is the alignment is not possible with romcc bootblocks having total size less than 4 kiB. Change-Id: I0ff2786f80a319ebb3215d4fd696cda3e15c3012 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/30855 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
0a656f033b
commit
ec576d1c97
|
@ -29,7 +29,8 @@
|
|||
|
||||
#include <arch/rom_segs.h>
|
||||
|
||||
#if IS_ENABLED(CONFIG_SIPI_VECTOR_IN_ROM)
|
||||
#if IS_ENABLED(CONFIG_C_ENVIRONMENT_BOOTBLOCK) || \
|
||||
IS_ENABLED(CONFIG_SIPI_VECTOR_IN_ROM)
|
||||
/* Symbol _start16bit must be aligned to 4kB to start AP CPUs with
|
||||
* Startup IPI message without RAM.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue