blob: fa03fd7af25a7b7b95f6409622507f1d1add01f1 [file] [log] [blame]
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2018 Google LLC
* Written by Simon Glass <sjg@chromium.org>
*/
#include <common.h>
#include <log.h>
#include <cros/vboot.h>
#include <tpm-common.h>
int vboot_ver6_jump_fw(struct vboot_info *vboot)
{
struct fmap_entry *entry;
int ret;
entry = &vboot->blob->spl_entry;
ret = vboot_jump(vboot, entry);
if (ret)
return log_msg_ret("jump", ret);
log_info("Ready to jump to firmware\n");
return 0;
}