mb/google/skyrim: Prepare for enabling PSP verstage

Add various verstage init functions to prepare for enable PSP verstage.

BUG=None
TEST=Build Skyrim BIOS image with PSP verstage enabled.

Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Change-Id: I0d0dba05d4d083e2c6860078676e59cf8f487c87
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63731
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
This commit is contained in:
Karthikeyan Ramasubramanian 2022-04-19 14:34:59 -06:00 committed by Felix Held
parent 6c3796beab
commit 43f51a041d
3 changed files with 40 additions and 0 deletions

View File

@ -8,6 +8,8 @@ ramstage-y += mainboard.c
ramstage-y += ec.c ramstage-y += ec.c
ramstage-$(CONFIG_CHROMEOS) += chromeos.c ramstage-$(CONFIG_CHROMEOS) += chromeos.c
verstage-$(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK) += verstage.c
subdirs-y += variants/baseboard subdirs-y += variants/baseboard
subdirs-y += variants/$(VARIANT_DIR) subdirs-y += variants/$(VARIANT_DIR)

View File

@ -7,5 +7,6 @@ ramstage-y += gpio.c
ramstage-y += tpm_tis.c ramstage-y += tpm_tis.c
verstage-y += tpm_tis.c verstage-y += tpm_tis.c
verstage-$(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK) += gpio.c
smm-y += gpio.c smm-y += gpio.c

View File

@ -0,0 +1,37 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <amdblocks/acpimmio.h>
#include <amdblocks/gpio.h>
#include <arch/io.h>
#include <baseboard/variants.h>
#include <psp_verstage.h>
#include <security/vboot/vboot_common.h>
#include <soc/southbridge.h>
void verstage_mainboard_early_init(void)
{
const struct soc_amd_gpio *gpios, *override_gpios;
size_t num_gpios, override_num_gpios;
variant_early_gpio_table(&gpios, &num_gpios);
variant_early_override_gpio_table(&override_gpios, &override_num_gpios);
gpio_configure_pads_with_override(gpios, num_gpios, override_gpios, override_num_gpios);
}
void verstage_mainboard_espi_init(void)
{
const struct soc_amd_gpio *gpios;
size_t num_gpios;
variant_espi_gpio_table(&gpios, &num_gpios);
gpio_configure_pads(gpios, num_gpios);
}
void verstage_mainboard_tpm_init(void)
{
const struct soc_amd_gpio *gpios;
size_t num_gpios;
variant_tpm_gpio_table(&gpios, &num_gpios);
gpio_configure_pads(gpios, num_gpios);
}