mb/amd/padmelon: Replace `HAVE_S3_SUPPORT` symbol

Replace it with `HAVE_ACPI_RESUME`, which defaults to n for this board.

Change-Id: Ibb07c0d001ded8d7ff991bf63607872bf4b79c8e
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50904
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
Angel Pons 2021-02-19 11:01:33 +01:00 committed by Patrick Georgi
parent 15cbc3b599
commit 77330e5b15
2 changed files with 2 additions and 6 deletions

View File

@ -44,10 +44,6 @@ config PADMELON_SOC_IN_USE
select AMD_APU_MERLINFALCON if PADMELON_MERLIN_FALCON
select AMD_APU_PRAIRIEFALCON if PADMELON_PRAIRIE_FALCON
config HAVE_S3_SUPPORT
bool
default n
config MAX_CPUS
int
default 4

View File

@ -20,7 +20,7 @@ static const struct soc_amd_gpio gpio_set_stage_reset[] = {
};
static const struct soc_amd_gpio gpio_set_stage_ram[] = {
#if CONFIG(HAVE_S3_SUPPORT)
#if CONFIG(HAVE_ACPI_RESUME)
/* PCIE_WAKE - default, do not program */
/* DEVSLP1 */
@ -34,7 +34,7 @@ static const struct soc_amd_gpio gpio_set_stage_ram[] = {
/* WLAND - default as GPIO, do not program */
#endif /* HAVE_S3_SUPPORT */
#endif /* HAVE_ACPI_RESUME */
/* BLINK - reselect GPIO OUTPUT HIGH to force BLINK */
PAD_GPO(GPIO_11, HIGH),
};