coreboot-kgpe-d16/payloads/libpayload/libc/lp_vboot.c
Jakub Czapiga b2163ea84b libpayload: Add vboot and reboot utility functions
Patch adds:
- vboot_fail_and_reboot() for vboot failures handling.
- reboot() weak implementation for payloads to implement, used
  by vboot_fail_and_reboot().
- vboot_recovery_mode_enabled() to check if recovery mode flag is set in
  vboot context. Implemented for future libcbfs implementation
  of VBOOT_CBFS_INTEGRATION in libpayload.

BUG=b:197114807
TEST=none

Change-Id: I53d1955573d54bc56d05f7780c18dcc8ac1fd399
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77725
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
2023-09-18 15:42:31 +00:00

43 lines
1 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause */
#include <libpayload-config.h>
#include <arch/virtual.h>
#include <assert.h>
#include <libpayload.h>
#include <stdio.h>
#include <stdlib.h>
#include <sysinfo.h>
#include <vb2_api.h>
#include <lp_vboot.h>
struct vb2_context *vboot_get_context(void)
{
static struct vb2_context *ctx;
if (ctx)
return ctx;
die_if(lib_sysinfo.vboot_workbuf == 0, "vboot workbuf pointer is not set\n");
/* Use the firmware verification workbuf from coreboot. */
vb2_error_t rv = vb2api_reinit(phys_to_virt(lib_sysinfo.vboot_workbuf), &ctx);
die_if(rv, "vboot workbuf could not be initialized, error: %#x\n", rv);
return ctx;
}
void vboot_fail_and_reboot(struct vb2_context *ctx, uint8_t reason, uint8_t subcode)
{
if (reason)
vb2api_fail(ctx, reason, subcode);
printf("vboot: reboot requested (reason: %#x, subcode %#x)", reason, subcode);
vb2ex_commit_data(ctx);
reboot();
}
int vboot_recovery_mode_enabled(void)
{
return !!(vboot_get_context()->flags & VB2_CONTEXT_RECOVERY_MODE);
}