From 8b122600c4689e05b5fb94c7559a734596f54fdd Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Thu, 18 Jan 2024 13:05:06 -0700 Subject: southbridge: Rename Makefiles from .inc to .mk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .inc suffix is confusing to various tools as it's not specific to Makefiles. This means that editors don't recognize the files, and don't open them with highlighting and any other specific editor functionality. This issue is also seen in the release notes generation script where Makefiles get renamed before running cloc. Signed-off-by: Martin Roth Change-Id: Ic80d27a963da8eddc3d1f0d9a3d59763028d4ed0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80075 Reviewed-by: Felix Singer Reviewed-by: Maximilian Brune Tested-by: build bot (Jenkins) Reviewed-by: Michael Niewöhner --- src/southbridge/intel/lynxpoint/Makefile.inc | 60 ----------------------- src/southbridge/intel/lynxpoint/Makefile.mk | 60 +++++++++++++++++++++++ src/southbridge/intel/lynxpoint/hsio/Makefile.inc | 8 --- src/southbridge/intel/lynxpoint/hsio/Makefile.mk | 8 +++ 4 files changed, 68 insertions(+), 68 deletions(-) delete mode 100644 src/southbridge/intel/lynxpoint/Makefile.inc create mode 100644 src/southbridge/intel/lynxpoint/Makefile.mk delete mode 100644 src/southbridge/intel/lynxpoint/hsio/Makefile.inc create mode 100644 src/southbridge/intel/lynxpoint/hsio/Makefile.mk (limited to 'src/southbridge/intel/lynxpoint') diff --git a/src/southbridge/intel/lynxpoint/Makefile.inc b/src/southbridge/intel/lynxpoint/Makefile.inc deleted file mode 100644 index 5088d8bb2d..0000000000 --- a/src/southbridge/intel/lynxpoint/Makefile.inc +++ /dev/null @@ -1,60 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-only - -ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT),y) - -bootblock-y += bootblock.c - -ramstage-y += pch.c -ramstage-y += iobp.c -ramstage-y += azalia.c -ramstage-y += fadt.c -ramstage-y += lpc.c -ramstage-y += pcie.c -ramstage-y += sata.c -ramstage-y += usb_ehci.c -ramstage-y += usb_xhci.c -ramstage-y += me.c -ramstage-y += smbus.c -ramstage-y += hda_verb.c -ramstage-$(CONFIG_INTEL_LYNXPOINT_LP) += serialio.c - -ifneq ($(CONFIG_VARIANT_DIR),) -ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/hda_verb.c -endif - -ramstage-y += me_status.c -ramstage-y += acpi.c - -ramstage-$(CONFIG_ELOG) += elog.c - -ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c pmutil.c -smm-y += smihandler.c pch.c -smm-y += pmutil.c usb_ehci.c usb_xhci.c - -bootblock-y += early_pch.c -romstage-y += early_usb.c early_me.c me_status.c early_pch.c -romstage-y += pmutil.c -romstage-y += iobp.c - -romstage-$(CONFIG_USE_NATIVE_RAMINIT) += early_pch_native.c early_usb_native.c iobp.c thermal.c -subdirs-$(CONFIG_USE_NATIVE_RAMINIT) += hsio - -romstage-$(CONFIG_USE_BROADWELL_MRC) += early_pch_native.c early_usb_native.c iobp.c thermal.c -subdirs-$(CONFIG_USE_BROADWELL_MRC) += hsio - -ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y) -romstage-y += lp_gpio.c -ramstage-y += lp_gpio.c -smm-y += lp_gpio.c -verstage-y += lp_gpio.c -bootblock-$(CONFIG_SERIALIO_UART_CONSOLE) += uart_init.c -bootblock-$(CONFIG_SERIALIO_UART_CONSOLE) += iobp.c -all-$(CONFIG_SERIALIO_UART_CONSOLE) += uart.c -smm-$(CONFIG_SERIALIO_UART_CONSOLE) += uart.c -endif - -verstage-y += pmutil.c - -CPPFLAGS_common += -I$(src)/southbridge/intel/lynxpoint/include - -endif diff --git a/src/southbridge/intel/lynxpoint/Makefile.mk b/src/southbridge/intel/lynxpoint/Makefile.mk new file mode 100644 index 0000000000..5088d8bb2d --- /dev/null +++ b/src/southbridge/intel/lynxpoint/Makefile.mk @@ -0,0 +1,60 @@ +## SPDX-License-Identifier: GPL-2.0-only + +ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_LYNXPOINT),y) + +bootblock-y += bootblock.c + +ramstage-y += pch.c +ramstage-y += iobp.c +ramstage-y += azalia.c +ramstage-y += fadt.c +ramstage-y += lpc.c +ramstage-y += pcie.c +ramstage-y += sata.c +ramstage-y += usb_ehci.c +ramstage-y += usb_xhci.c +ramstage-y += me.c +ramstage-y += smbus.c +ramstage-y += hda_verb.c +ramstage-$(CONFIG_INTEL_LYNXPOINT_LP) += serialio.c + +ifneq ($(CONFIG_VARIANT_DIR),) +ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/variants/$(VARIANT_DIR)/hda_verb.c +endif + +ramstage-y += me_status.c +ramstage-y += acpi.c + +ramstage-$(CONFIG_ELOG) += elog.c + +ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smi.c pmutil.c +smm-y += smihandler.c pch.c +smm-y += pmutil.c usb_ehci.c usb_xhci.c + +bootblock-y += early_pch.c +romstage-y += early_usb.c early_me.c me_status.c early_pch.c +romstage-y += pmutil.c +romstage-y += iobp.c + +romstage-$(CONFIG_USE_NATIVE_RAMINIT) += early_pch_native.c early_usb_native.c iobp.c thermal.c +subdirs-$(CONFIG_USE_NATIVE_RAMINIT) += hsio + +romstage-$(CONFIG_USE_BROADWELL_MRC) += early_pch_native.c early_usb_native.c iobp.c thermal.c +subdirs-$(CONFIG_USE_BROADWELL_MRC) += hsio + +ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y) +romstage-y += lp_gpio.c +ramstage-y += lp_gpio.c +smm-y += lp_gpio.c +verstage-y += lp_gpio.c +bootblock-$(CONFIG_SERIALIO_UART_CONSOLE) += uart_init.c +bootblock-$(CONFIG_SERIALIO_UART_CONSOLE) += iobp.c +all-$(CONFIG_SERIALIO_UART_CONSOLE) += uart.c +smm-$(CONFIG_SERIALIO_UART_CONSOLE) += uart.c +endif + +verstage-y += pmutil.c + +CPPFLAGS_common += -I$(src)/southbridge/intel/lynxpoint/include + +endif diff --git a/src/southbridge/intel/lynxpoint/hsio/Makefile.inc b/src/southbridge/intel/lynxpoint/hsio/Makefile.inc deleted file mode 100644 index 6b74997511..0000000000 --- a/src/southbridge/intel/lynxpoint/hsio/Makefile.inc +++ /dev/null @@ -1,8 +0,0 @@ -## SPDX-License-Identifier: GPL-2.0-or-later - -romstage-y += common.c -ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y) -romstage-y += lpt_lp_bx.c -else -romstage-y += lpt_h_cx.c -endif diff --git a/src/southbridge/intel/lynxpoint/hsio/Makefile.mk b/src/southbridge/intel/lynxpoint/hsio/Makefile.mk new file mode 100644 index 0000000000..6b74997511 --- /dev/null +++ b/src/southbridge/intel/lynxpoint/hsio/Makefile.mk @@ -0,0 +1,8 @@ +## SPDX-License-Identifier: GPL-2.0-or-later + +romstage-y += common.c +ifeq ($(CONFIG_INTEL_LYNXPOINT_LP),y) +romstage-y += lpt_lp_bx.c +else +romstage-y += lpt_h_cx.c +endif -- cgit v1.2.3