diff options
author | Fred Reitberger <reitbergerfred@gmail.com> | 2022-04-26 10:22:15 -0400 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-04-27 16:07:45 +0000 |
commit | 6e184e6bdf2d4662aa110affbf4f78208bceea2f (patch) | |
tree | d91f1793cf09e36bcce2b676c8ea6d96c18cd351 /src | |
parent | 8fbf88fd8cbcd76274a2f418f08a80fc4d93fe13 (diff) |
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/amd/chausie/bootblock.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/amd/chausie/bootblock.c b/src/mainboard/amd/chausie/bootblock.c index f768f3f778..c1d9dd488a 100644 --- a/src/mainboard/amd/chausie/bootblock.c +++ b/src/mainboard/amd/chausie/bootblock.c @@ -1,9 +1,12 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <bootblock_common.h> +#include <soc/espi.h> #include "gpio.h" void bootblock_mainboard_early_init(void) { mainboard_program_early_gpios(); + + espi_switch_to_spi1_pads(); } |