mb/google/nissa/var/rull: add ssd timing and modify ssd GPIO pins of rtd3
[coreboot2.git] / src / security / vboot / vboot_lib.c
blob06fd6d7478227ad9ec4830731adcc64ad0028a0d
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <console/vtxprintf.h>
5 #include <vb2_api.h>
7 /*
8 * vboot callbacks implemented by coreboot -- necessary for making general API
9 * calls when CONFIG(VBOOT_LIB) is enabled. For callbacks specific to verstage
10 * CONFIG(VBOOT), please see vboot_logic.c.
13 void vb2ex_printf(const char *func, const char *fmt, ...)
15 va_list args;
17 if (func)
18 printk(BIOS_INFO, "VB2:%s() ", func);
20 va_start(args, fmt);
21 vprintk(BIOS_INFO, fmt, args);
22 va_end(args);
25 void vb2ex_abort(void)
27 die("vboot has aborted execution; exit\n");