From f008e0af165bc5ebedd1baabff896ddf9db21598 Mon Sep 17 00:00:00 2001
From: Felix Held <felix-coreboot@felixheld.de>
Date: Sat, 1 Apr 2023 01:31:24 +0200
Subject: soc/amd/*/Makefile: use all_x86 target

Use the newly introduced 'all_x86' make target to add the compilation
unit to all stages that run on the x86 cores, but not to verstage on
PSP.

TEST=Timeless builds for Mandolin without verstage on PSP and Guybrush
with verstage on PSP result in identical images with and without this
patch applied.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I94de6de5a4c7723065a4eb1b7149f9933ef134a1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74151
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
---
 src/soc/amd/cezanne/Makefile.inc              | 13 ++++---------
 src/soc/amd/common/block/acpi/Makefile.inc    |  6 +-----
 src/soc/amd/common/block/alink/Makefile.inc   |  6 +-----
 src/soc/amd/common/block/cpu/tsc/Makefile.inc | 23 ++++-------------------
 src/soc/amd/common/block/lpc/Makefile.inc     | 11 ++---------
 src/soc/amd/common/block/pci/Makefile.inc     |  6 +-----
 src/soc/amd/common/block/pm/Makefile.inc      |  8 ++------
 src/soc/amd/common/block/uart/Makefile.inc    |  7 +------
 src/soc/amd/glinda/Makefile.inc               | 12 ++++--------
 src/soc/amd/mendocino/Makefile.inc            | 12 ++++--------
 src/soc/amd/phoenix/Makefile.inc              | 12 ++++--------
 src/soc/amd/picasso/Makefile.inc              | 13 ++++---------
 12 files changed, 32 insertions(+), 97 deletions(-)

(limited to 'src')

diff --git a/src/soc/amd/cezanne/Makefile.inc b/src/soc/amd/cezanne/Makefile.inc
index bf5769836c..062a19d88f 100644
--- a/src/soc/amd/cezanne/Makefile.inc
+++ b/src/soc/amd/cezanne/Makefile.inc
@@ -9,18 +9,15 @@ all-y		+= aoac.c
 all-y		+= config.c
 all-y		+= i2c.c
 
+# all_x86-y adds the compilation unit to all stages that run on the x86 cores
+all_x86-y	+= gpio.c
+all_x86-y	+= uart.c
+
 bootblock-y	+= early_fch.c
 bootblock-y	+= espi_util.c
-bootblock-y	+= gpio.c
-bootblock-y	+= uart.c
-
-verstage_x86-y	+= gpio.c
-verstage_x86-y	+= uart.c
 
 romstage-y	+= fsp_m_params.c
-romstage-y	+= gpio.c
 romstage-y	+= romstage.c
-romstage-y	+= uart.c
 
 ramstage-y	+= acpi.c
 ramstage-y	+= agesa_acpi.c
@@ -28,11 +25,9 @@ ramstage-y	+= chip.c
 ramstage-y	+= cpu.c
 ramstage-y	+= fch.c
 ramstage-y	+= fsp_s_params.c
-ramstage-y	+= gpio.c
 ramstage-y	+= graphics.c
 ramstage-y	+= mca.c
 ramstage-y	+= root_complex.c
-ramstage-y	+= uart.c
 ramstage-y	+= xhci.c
 
 smm-y		+= gpio.c
diff --git a/src/soc/amd/common/block/acpi/Makefile.inc b/src/soc/amd/common/block/acpi/Makefile.inc
index cf1e9c1a14..a0d92907a4 100644
--- a/src/soc/amd/common/block/acpi/Makefile.inc
+++ b/src/soc/amd/common/block/acpi/Makefile.inc
@@ -1,11 +1,7 @@
 ## SPDX-License-Identifier: GPL-2.0-only
 ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_ACPI),y)
 
-bootblock-y += acpi.c
-verstage_x86-y += acpi.c
-romstage-y += acpi.c
-ramstage-y += acpi.c
-postcar-y += acpi.c
+all_x86-y += acpi.c
 smm-y += acpi.c
 
 ramstage-y += pm_state.c
diff --git a/src/soc/amd/common/block/alink/Makefile.inc b/src/soc/amd/common/block/alink/Makefile.inc
index fbb96eef87..ef0728afc8 100644
--- a/src/soc/amd/common/block/alink/Makefile.inc
+++ b/src/soc/amd/common/block/alink/Makefile.inc
@@ -1,11 +1,7 @@
 ## SPDX-License-Identifier: GPL-2.0-only
 ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_ALINK),y)
 
-bootblock-y += alink.c
-verstage_x86-y += alink.c
-romstage-y += alink.c
-postcar-y += alink.c
-ramstage-y += alink.c
+all_x86-y += alink.c
 smm-y += alink.c
 
 endif # CONFIG_SOC_AMD_COMMON_BLOCK_ALINK
diff --git a/src/soc/amd/common/block/cpu/tsc/Makefile.inc b/src/soc/amd/common/block/cpu/tsc/Makefile.inc
index 65e849a36e..4ec0e0fa52 100644
--- a/src/soc/amd/common/block/cpu/tsc/Makefile.inc
+++ b/src/soc/amd/common/block/cpu/tsc/Makefile.inc
@@ -1,24 +1,9 @@
 ## SPDX-License-Identifier: GPL-2.0-only
 
-bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM15H_16H) += cpufreq_15_16.c
-bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H) += cpufreq_17_19.c
-bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM1AH) += cpufreq_1a.c
-bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_TSC) += tsc_freq.c
-
-verstage_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM15H_16H) += cpufreq_15_16.c
-verstage_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H) += cpufreq_17_19.c
-verstage_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM1AH) += cpufreq_1a.c
-verstage_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_TSC) += tsc_freq.c
-
-romstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM15H_16H) += cpufreq_15_16.c
-romstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H) += cpufreq_17_19.c
-romstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM1AH) += cpufreq_1a.c
-romstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_TSC) += tsc_freq.c
-
-ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM15H_16H) += cpufreq_15_16.c
-ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H) += cpufreq_17_19.c
-ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM1AH) += cpufreq_1a.c
-ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_TSC) += tsc_freq.c
+all_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM15H_16H) += cpufreq_15_16.c
+all_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H) += cpufreq_17_19.c
+all_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM1AH) += cpufreq_1a.c
+all_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_TSC) += tsc_freq.c
 
 smm-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM15H_16H) += cpufreq_15_16.c
 smm-$(CONFIG_SOC_AMD_COMMON_BLOCK_CPUFREQ_FAM17H_19H) += cpufreq_17_19.c
diff --git a/src/soc/amd/common/block/lpc/Makefile.inc b/src/soc/amd/common/block/lpc/Makefile.inc
index 6bec843020..11de514a08 100644
--- a/src/soc/amd/common/block/lpc/Makefile.inc
+++ b/src/soc/amd/common/block/lpc/Makefile.inc
@@ -3,20 +3,13 @@ ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_LPC),y)
 
 ramstage-y += lpc.c
 
-bootblock-y += lpc_util.c
-verstage_x86-y += lpc_util.c
-romstage-y += lpc_util.c
-postcar-y += lpc_util.c
-ramstage-y += lpc_util.c
+all_x86-y += lpc_util.c
 smm-y += lpc_util.c
 
 endif # CONFIG_SOC_AMD_COMMON_BLOCK_LPC
 
 ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_LPC_SPI_DMA),y)
-bootblock-y += spi_dma.c
-verstage_x86-y += spi_dma.c
-romstage-y += spi_dma.c
-ramstage-y += spi_dma.c
+all_x86-y += spi_dma.c
 smm-y += spi_dma.c
 endif # CONFIG_SOC_AMD_COMMON_BLOCK_LPC_SPI_DMA
 
diff --git a/src/soc/amd/common/block/pci/Makefile.inc b/src/soc/amd/common/block/pci/Makefile.inc
index b938c67c75..372c6ce411 100644
--- a/src/soc/amd/common/block/pci/Makefile.inc
+++ b/src/soc/amd/common/block/pci/Makefile.inc
@@ -11,10 +11,6 @@ endif # CONFIG_SOC_AMD_COMMON_BLOCK_PCI
 
 ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_PCI_MMCONF),y)
 
-bootblock-y += amd_pci_mmconf.c
-verstage_x86-y += amd_pci_mmconf.c
-romstage-y += amd_pci_mmconf.c
-postcar-y += amd_pci_mmconf.c
-ramstage-y += amd_pci_mmconf.c
+all_x86-y += amd_pci_mmconf.c
 
 endif # CONFIG_SOC_AMD_COMMON_BLOCK_PCI_MMCONF
diff --git a/src/soc/amd/common/block/pm/Makefile.inc b/src/soc/amd/common/block/pm/Makefile.inc
index de1809a45b..cae40994f9 100644
--- a/src/soc/amd/common/block/pm/Makefile.inc
+++ b/src/soc/amd/common/block/pm/Makefile.inc
@@ -1,13 +1,9 @@
 ## SPDX-License-Identifier: GPL-2.0-only
 
-bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_PM) += pmlib.c
-bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_RESET) += reset.c
+all_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_RESET) += reset.c
 
-verstage_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_RESET) += reset.c
+bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_PM) += pmlib.c
 
 romstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_PM_CHIPSET_STATE_SAVE) += chipset_state.c
-romstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_RESET) += reset.c
-
-ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_RESET) += reset.c
 
 smm-$(CONFIG_SOC_AMD_COMMON_BLOCK_PM_CHIPSET_STATE_SAVE) += chipset_state.c
diff --git a/src/soc/amd/common/block/uart/Makefile.inc b/src/soc/amd/common/block/uart/Makefile.inc
index de7b68e3fd..bd182d9cb2 100644
--- a/src/soc/amd/common/block/uart/Makefile.inc
+++ b/src/soc/amd/common/block/uart/Makefile.inc
@@ -1,12 +1,7 @@
 ## SPDX-License-Identifier: GPL-2.0-only
 ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_UART),y)
 
-# all-y can't be used, since verstage on PSP has a different implementation
-bootblock-y += uart.c
-verstage_x86-y += uart.c
-romstage-y += uart.c
-postcar-y += uart.c
-ramstage-y += uart.c
+all_x86-y += uart.c
 smm-$(CONFIG_DEBUG_SMI) += uart.c
 
 all-$(CONFIG_AMD_SOC_CONSOLE_UART) += uart_console.c
diff --git a/src/soc/amd/glinda/Makefile.inc b/src/soc/amd/glinda/Makefile.inc
index 81033e9a42..47c121e7c1 100644
--- a/src/soc/amd/glinda/Makefile.inc
+++ b/src/soc/amd/glinda/Makefile.inc
@@ -12,19 +12,17 @@ all-y		+= aoac.c
 all-y		+= config.c
 all-y		+= i2c.c
 
+# all_x86-y adds the compilation unit to all stages that run on the x86 cores
+all_x86-y	+= gpio.c
+all_x86-y	+= uart.c
+
 bootblock-y	+= early_fch.c
 bootblock-y	+= espi_util.c
-bootblock-y	+= gpio.c
-bootblock-y	+= uart.c
 
 verstage-y	+= espi_util.c
-verstage_x86-y	+= gpio.c
-verstage_x86-y	+= uart.c
 
 romstage-y	+= fsp_m_params.c
-romstage-y	+= gpio.c
 romstage-y	+= romstage.c
-romstage-y	+= uart.c
 
 ramstage-y	+= acpi.c
 ramstage-y	+= agesa_acpi.c
@@ -32,10 +30,8 @@ ramstage-y	+= chip.c
 ramstage-y	+= cpu.c
 ramstage-y	+= fch.c
 ramstage-y	+= fsp_s_params.c
-ramstage-y	+= gpio.c
 ramstage-y	+= mca.c
 ramstage-y	+= root_complex.c
-ramstage-y	+= uart.c
 ramstage-y	+= xhci.c
 
 smm-y		+= gpio.c
diff --git a/src/soc/amd/mendocino/Makefile.inc b/src/soc/amd/mendocino/Makefile.inc
index 5ed8386228..9d9adce08d 100644
--- a/src/soc/amd/mendocino/Makefile.inc
+++ b/src/soc/amd/mendocino/Makefile.inc
@@ -9,19 +9,17 @@ all-y		+= aoac.c
 all-y		+= config.c
 all-y		+= i2c.c
 
+# all_x86-y adds the compilation unit to all stages that run on the x86 cores
+all_x86-y	+= gpio.c
+all_x86-y	+= uart.c
+
 bootblock-y	+= early_fch.c
 bootblock-y	+= espi_util.c
-bootblock-y	+= gpio.c
-bootblock-y	+= uart.c
 
 verstage-y	+= espi_util.c
-verstage_x86-y	+= gpio.c
-verstage_x86-y	+= uart.c
 
 romstage-y	+= fsp_m_params.c
-romstage-y	+= gpio.c
 romstage-y	+= romstage.c
-romstage-y	+= uart.c
 
 ramstage-y	+= acpi.c
 ramstage-y	+= agesa_acpi.c
@@ -30,10 +28,8 @@ ramstage-y	+= cpu.c
 ramstage-y	+= fch.c
 ramstage-y	+= fsp_misc_data_hob.c
 ramstage-y	+= fsp_s_params.c
-ramstage-y	+= gpio.c
 ramstage-y	+= mca.c
 ramstage-y	+= root_complex.c
-ramstage-y	+= uart.c
 ramstage-y	+= xhci.c
 
 smm-y		+= gpio.c
diff --git a/src/soc/amd/phoenix/Makefile.inc b/src/soc/amd/phoenix/Makefile.inc
index 27e5abcbf9..a40aa2cbc8 100644
--- a/src/soc/amd/phoenix/Makefile.inc
+++ b/src/soc/amd/phoenix/Makefile.inc
@@ -12,20 +12,18 @@ all-y		+= aoac.c
 all-y		+= config.c
 all-y		+= i2c.c
 
+# all_x86-y adds the compilation unit to all stages that run on the x86 cores
+all_x86-y	+= gpio.c
+all_x86-y	+= uart.c
+
 bootblock-y	+= early_fch.c
 bootblock-y	+= espi_util.c
-bootblock-y	+= gpio.c
-bootblock-y	+= uart.c
 
 verstage-y	+= espi_util.c
-verstage_x86-y	+= gpio.c
-verstage_x86-y	+= uart.c
 
 romstage-y	+= fsp_m_params.c
-romstage-y	+= gpio.c
 romstage-y	+= romstage.c
 romstage-y	+= soc_util.c
-romstage-y	+= uart.c
 
 ramstage-y	+= acpi.c
 ramstage-y	+= agesa_acpi.c
@@ -33,12 +31,10 @@ ramstage-y	+= chip.c
 ramstage-y	+= cpu.c
 ramstage-y	+= fch.c
 ramstage-y	+= fsp_s_params.c
-ramstage-y	+= gpio.c
 ramstage-y	+= graphics.c
 ramstage-y	+= mca.c
 ramstage-y	+= root_complex.c
 ramstage-y	+= soc_util.c
-ramstage-y	+= uart.c
 ramstage-y	+= xhci.c
 
 smm-y		+= gpio.c
diff --git a/src/soc/amd/picasso/Makefile.inc b/src/soc/amd/picasso/Makefile.inc
index b5957b9b1d..cb42582d87 100644
--- a/src/soc/amd/picasso/Makefile.inc
+++ b/src/soc/amd/picasso/Makefile.inc
@@ -10,17 +10,14 @@ all-y += aoac.c
 all-y += config.c
 all-y += i2c.c
 
+# all_x86-y adds the compilation unit to all stages that run on the x86 cores
+all_x86-y += gpio.c
+all_x86-y += uart.c
+
 bootblock-y += early_fch.c
-bootblock-y += gpio.c
-bootblock-y += uart.c
 
 romstage-y += fsp_m_params.c
-romstage-y += gpio.c
 romstage-y += romstage.c
-romstage-y += uart.c
-
-verstage_x86-y += gpio.c
-verstage_x86-y += uart.c
 
 ramstage-$(CONFIG_HAVE_ACPI_TABLES) += acpi.c
 ramstage-$(CONFIG_HAVE_ACPI_TABLES) += agesa_acpi.c
@@ -28,14 +25,12 @@ ramstage-y += chip.c
 ramstage-y += cpu.c
 ramstage-y += fch.c
 ramstage-y += fsp_s_params.c
-ramstage-y += gpio.c
 ramstage-y += graphics.c
 ramstage-y += mca.c
 ramstage-y += pcie_gpp.c
 ramstage-y += root_complex.c
 ramstage-y += sata.c
 ramstage-y += soc_util.c
-ramstage-y += uart.c
 ramstage-y += xhci.c
 
 smm-y += smihandler.c
-- 
cgit v1.2.3