d2b2a18307
Defined as TPM1 || TPM2. Change-Id: I18c26d6991c2ccf782a515a8e90a3eb82b53b0e6 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/54853 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
18 lines
400 B
C
18 lines
400 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#if CONFIG(TPM)
|
|
|
|
/* Start of the root of trust */
|
|
uint32_t vboot_setup_tpm(struct vb2_context *ctx);
|
|
|
|
/* vboot_extend_pcr function for vb2 context */
|
|
vb2_error_t vboot_extend_pcr(struct vb2_context *ctx, int pcr,
|
|
enum vb2_pcr_digest which_digest);
|
|
|
|
#else
|
|
|
|
#define vboot_setup_tpm(ctx) 0
|
|
|
|
#define vboot_extend_pcr(ctx, pcr, which_digest) 0
|
|
|
|
#endif
|