summaryrefslogtreecommitdiff
path: root/src/mainboard/google/myst/bootblock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/myst/bootblock.c')
-rw-r--r--src/mainboard/google/myst/bootblock.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mainboard/google/myst/bootblock.c b/src/mainboard/google/myst/bootblock.c
index 4d4d7e7468..e9d69e32bc 100644
--- a/src/mainboard/google/myst/bootblock.c
+++ b/src/mainboard/google/myst/bootblock.c
@@ -18,7 +18,11 @@ void mb_set_up_early_espi(void)
void bootblock_mainboard_early_init(void)
{
- /* TODO(b/275959717): Perform mainboard initialization */
+ size_t num_gpios;
+ const struct soc_amd_gpio *gpios;
+
+ variant_tpm_gpio_table(&gpios, &num_gpios);
+ gpio_configure_pads(gpios, num_gpios);
}
void bootblock_mainboard_init(void)