vboot: make vboot2_verify_firmware return
this allows each board to decide what to do after firmware verification is
done. some board needs to return back to the previous stage and let the
previous stage kick off the verified stage.
this also makes it more visible what is going to happen in the verstage since
stage_exit now resides in main().
BUG=none
BRANCH=tot
TEST=booted cosmos dev board. booted blaze in normal and recovery mode.
built for all current boards.
Original-Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
Original-Change-Id: I3cb466cedf2a9c2b0d48fc4b0f73f76d0714c0c7
Original-Reviewed-on: https://chromium-review.googlesource.com/232517
(cherry picked from commit 495704f36a)
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Change-Id: Ic20dfd3fa93849befc2b37012a5e0907fe83e8e2
Reviewed-on: http://review.coreboot.org/9702
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
7c256405c3
commit
23727ca424
4 changed files with 34 additions and 14 deletions
|
|
@ -19,6 +19,8 @@
|
|||
|
||||
#include <arch/cache.h>
|
||||
#include <arch/exception.h>
|
||||
#include <arch/hlt.h>
|
||||
#include <arch/stages.h>
|
||||
#include <console/console.h>
|
||||
#include <soc/cache.h>
|
||||
#include <soc/early_configs.h>
|
||||
|
|
@ -47,12 +49,23 @@ static void soc_init(void)
|
|||
enable_cache();
|
||||
}
|
||||
|
||||
static void verstage(void)
|
||||
{
|
||||
void *entry;
|
||||
|
||||
soc_init();
|
||||
early_mainboard_init();
|
||||
|
||||
entry = vboot2_verify_firmware();
|
||||
if (entry != (void *)-1)
|
||||
stage_exit(entry);
|
||||
}
|
||||
|
||||
void main(void)
|
||||
{
|
||||
asm volatile ("bl arm_init_caches"
|
||||
: : : "r0", "r1", "r2", "r3", "r4", "r5", "ip");
|
||||
|
||||
soc_init();
|
||||
early_mainboard_init();
|
||||
vboot2_verify_firmware();
|
||||
verstage();
|
||||
hlt();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
|
||||
#include <arch/cache.h>
|
||||
#include <arch/exception.h>
|
||||
#include <arch/hlt.h>
|
||||
#include <arch/stages.h>
|
||||
#include <console/console.h>
|
||||
#include <soc/verstage.h>
|
||||
#include <vendorcode/google/chromeos/chromeos.h>
|
||||
|
|
@ -28,12 +30,21 @@ void __attribute__((weak)) verstage_mainboard_init(void)
|
|||
/* Default empty implementation. */
|
||||
}
|
||||
|
||||
void main(void)
|
||||
static void verstage(void)
|
||||
{
|
||||
void *entry;
|
||||
|
||||
console_init();
|
||||
exception_init();
|
||||
|
||||
verstage_mainboard_init();
|
||||
|
||||
vboot2_verify_firmware();
|
||||
entry = vboot2_verify_firmware();
|
||||
if (entry != (void *)-1)
|
||||
stage_exit(entry);
|
||||
}
|
||||
|
||||
void main(void)
|
||||
{
|
||||
verstage();
|
||||
hlt();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue