md/amd/chausie: call espi_switch_to_spi1_pads

Chausie uses the spi1 pads for eSPI

Change-Id: Iee9b92dd9b4e84764568ec3cc8d1fce731e0d1a7
Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63866
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Fred Reitberger 2022-04-26 10:22:15 -04:00 committed by Felix Held
parent 8fbf88fd8c
commit 6e184e6bdf
1 changed files with 3 additions and 0 deletions

View File

@ -1,9 +1,12 @@
/* SPDX-License-Identifier: GPL-2.0-only */ /* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h> #include <bootblock_common.h>
#include <soc/espi.h>
#include "gpio.h" #include "gpio.h"
void bootblock_mainboard_early_init(void) void bootblock_mainboard_early_init(void)
{ {
mainboard_program_early_gpios(); mainboard_program_early_gpios();
espi_switch_to_spi1_pads();
} }