aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/amd/mandolin/mainboard.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2020-11-23 23:01:45 +0100
committerFelix Held <felix-coreboot@felixheld.de>2020-11-30 19:17:29 +0000
commite2cb8696f0ea1522b256bcb3973c659c3cd76384 (patch)
tree8c56d24b1483236601670feabf94bd47f9ae5c03 /src/mainboard/amd/mandolin/mainboard.c
parentffb4652461b4ee8da2b816c5288c3076b7379de4 (diff)
soc/amd/picasso: remove PICASSO_LPC_IOMUX Kconfig option from SoC
PICASSO_LPC_IOMUX was only used in the amd/mandolin board, but not in the corresponding SoC code, so remove it from the SoC's Kconfig and reanme it in the mainboard's Kconfig to MANDOLIN_LPC. Change-Id: I261e093d6c56be6073a816b79c60d3a0457616f8 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47891 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/mainboard/amd/mandolin/mainboard.c')
-rw-r--r--src/mainboard/amd/mandolin/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/amd/mandolin/mainboard.c b/src/mainboard/amd/mandolin/mainboard.c
index 247616cff7..b509282f8b 100644
--- a/src/mainboard/amd/mandolin/mainboard.c
+++ b/src/mainboard/amd/mandolin/mainboard.c
@@ -111,13 +111,13 @@ static void mainboard_init(void *chip_info)
{
struct soc_amd_picasso_config *cfg = config_of_soc();
- if (!CONFIG(PICASSO_LPC_IOMUX))
+ if (!CONFIG(MANDOLIN_LPC))
cfg->emmc_config.timing = SD_EMMC_EMMC_HS400;
mainboard_program_gpios();
/* Re-muxing LPCCLK0 can hang the system if LPC is in use. */
- if (CONFIG(PICASSO_LPC_IOMUX))
+ if (CONFIG(MANDOLIN_LPC))
printk(BIOS_INFO, "eMMC not available due to LPC requirement\n");
else
mainboard_program_emmc_gpios();