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>
This commit is contained in:
Jakub Czapiga 2023-09-08 13:19:00 +00:00 committed by Martin L Roth
parent 971c9442f6
commit b2163ea84b
4 changed files with 36 additions and 0 deletions

View File

@ -414,6 +414,13 @@ void mouse_cursor_add_input_driver(struct mouse_cursor_input_driver *in);
* @{
*/
int exec(long addr, int argc, char **argv);
/*
* reboot() handles reboot requests made by libpayload. It has weak implementation
* which should be overridden by payload.
*/
void __noreturn reboot(void);
/** @} */
/**

View File

@ -7,4 +7,13 @@
struct vb2_context *vboot_get_context(void);
/*
* Call vb2api_fail() with reason and subcode, save vboot data with vb2ex_commit_data()
* and reboot with vboot_reboot().
*/
void vboot_fail_and_reboot(struct vb2_context *ctx, uint8_t reason, uint8_t subcode);
/* Returns non-zero if recovery mode is enabled. */
int vboot_recovery_mode_enabled(void);
#endif /* _LP_VBOOT_H_ */

View File

@ -174,3 +174,8 @@ void buffer_to_fifo32_prefix(const void *buffer, u32 prefix, int prefsz, size_t
}
}
__weak void reboot(void)
{
fatal("Reboot requested but not implemented\n");
}

View File

@ -26,3 +26,18 @@ struct vb2_context *vboot_get_context(void)
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);
}