mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-11 18:35:28 +00:00
We no longer support ADV EVT0 board and Discovery reference design. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BUG=None TEST=make BOARD=daisy && make BOARD=link Change-Id: I7eb81e5271c070b17f018ac9c14491f1804c0e08
77 lines
2.0 KiB
C
77 lines
2.0 KiB
C
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Verified boot module for Chrome EC */
|
|
|
|
#include "console.h"
|
|
#include "gpio.h"
|
|
#include "keyboard_scan.h"
|
|
#include "system.h"
|
|
#include "util.h"
|
|
#include "vboot.h"
|
|
|
|
/* Console output macros */
|
|
#define CPUTS(outstr) cputs(CC_VBOOT, outstr)
|
|
#define CPRINTF(format, args...) cprintf(CC_VBOOT, format, ## args)
|
|
|
|
|
|
/* Jumps to one of the RW images if necessary. */
|
|
static void jump_to_other_image(void)
|
|
{
|
|
/* Only jump to another image if we're currently in RO */
|
|
if (system_get_image_copy() != SYSTEM_IMAGE_RO)
|
|
return;
|
|
|
|
#ifdef CONFIG_TASK_KEYSCAN
|
|
/* Don't jump if recovery requested */
|
|
if (keyboard_scan_recovery_pressed()) {
|
|
CPUTS("[Vboot staying in RO because key pressed]\n");
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
/* Don't jump if we're in RO becuase we jumped there (this keeps us
|
|
* from jumping to RO only to jump right back). */
|
|
if (system_jumped_to_this_image())
|
|
return;
|
|
|
|
#if !defined(BOARD_daisy)
|
|
/* TODO: (crosbug.com/p/8572) Daisy doesn't define a GPIO
|
|
* for the recovery signal from servo, so can't check it. */
|
|
if (gpio_get_level(GPIO_RECOVERYn) == 0) {
|
|
CPUTS("[Vboot staying in RO due to recovery signal]\n");
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifdef BOARD_link
|
|
/* TODO: (crosbug.com/p/8561) once daisy can warm-boot to another
|
|
* image, enable this there too. */
|
|
/* TODO: real verified boot (including recovery reason); for now, just
|
|
* jump to image A. */
|
|
system_run_image_copy(SYSTEM_IMAGE_RW_A, 0);
|
|
#endif
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/* Initialization */
|
|
|
|
int vboot_pre_init(void)
|
|
{
|
|
/* FIXME(wfrichar): crosbug.com/p/7453: should protect flash */
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
|
|
int vboot_init(void)
|
|
{
|
|
/* FIXME(wfrichar): placeholder for full verified boot implementation.
|
|
* TBD exactly how, but we may want to continue in RO firmware, jump
|
|
* directly to one of the RW firmwares, etc. */
|
|
jump_to_other_image();
|
|
return EC_SUCCESS;
|
|
}
|