Files
OpenCellular/common/vboot.c
Randall Spangler 41e3b58258 Remove old scratchpad-based reboot-to-image interface
Now that we can jump directly to other images, we don't need this.

We jump to image A by default, unless the recovery button or signal is asserted.

Signed-off-by: Randall Spangler <rspangler@chromium.org>

BUG=chrome-os-partner:8562
TEST=manual

Reboot -> runs image A
Reboot with reload (F3) held down -> runs RO
Reboot with 'dut-control goog_rec_mode:on' -> runs RO

Change-Id: I8259fe0d738ce0ca897d2f4427d8cf61858b8901
2012-03-20 09:43:46 -07:00

66 lines
1.7 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 "gpio.h"
#include "keyboard_scan.h"
#include "system.h"
#include "uart.h"
#include "util.h"
#include "vboot.h"
/* 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;
/* Don't jump if recovery requested */
if (keyboard_scan_recovery_pressed()) {
uart_puts("Vboot staying in RO because key pressed.\n");
return;
}
#if !defined(BOARD_daisy) && !defined(BOARD_discovery)
/* TODO: (crosbug.com/p/8572) Daisy and discovery don't define a GPIO
* for the recovery signal from servo, so can't check it. */
if (gpio_get_level(GPIO_RECOVERYn) == 0) {
uart_puts("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);
#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;
}