Attention is currently required from: Jason Glenesk, Marshall Dawson, Zheng Bao, Felix Held. Hello Zheng Bao,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/50188
to review the following change.
Change subject: [WIP]mb/amd/majolica: Set the eSPI to eSPI channel 1. ......................................................................
[WIP]mb/amd/majolica: Set the eSPI to eSPI channel 1.
Change-Id: Ifd398e64b1bcb46834e1b0f446cdf407825f7db8 Signed-off-by: Zheng Bao fishbaozi@gmail.com --- M src/mainboard/amd/majolica/bootblock.c M src/mainboard/amd/majolica/early_gpio.c 2 files changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/88/50188/1
diff --git a/src/mainboard/amd/majolica/bootblock.c b/src/mainboard/amd/majolica/bootblock.c index f768f3f..6d81857 100644 --- a/src/mainboard/amd/majolica/bootblock.c +++ b/src/mainboard/amd/majolica/bootblock.c @@ -1,9 +1,11 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h> +#include <soc/southbridge.h> #include "gpio.h"
void bootblock_mainboard_early_init(void) { mainboard_program_early_gpios(); + fch_espi_channel_sel(1); } diff --git a/src/mainboard/amd/majolica/early_gpio.c b/src/mainboard/amd/majolica/early_gpio.c index 916d679..efd06f0 100644 --- a/src/mainboard/amd/majolica/early_gpio.c +++ b/src/mainboard/amd/majolica/early_gpio.c @@ -6,6 +6,7 @@ /* GPIO pins used by coreboot should be initialized in bootblock */
static const struct soc_amd_gpio gpio_set_stage_reset[] = { + PAD_GPO(GPIO_70, HIGH), };
void mainboard_program_early_gpios(void)