1# SPDX-License-Identifier: GPL-2.0-only 2 3ifeq ($(CONFIG_NORTHBRIDGE_INTEL_GM45),y) 4 5bootblock-y += bootblock.c 6 7romstage-y += early_init.c 8romstage-y += early_reset.c 9romstage-y += raminit.c 10romstage-y += raminit_rcomp_calibration.c 11romstage-y += raminit_receive_enable_calibration.c 12romstage-y += raminit_read_write_training.c 13romstage-y += raminit_meminfo.c 14romstage-y += pcie.c 15romstage-y += thermal.c 16romstage-y += igd.c 17romstage-y += pm.c 18romstage-y += memmap.c 19romstage-y += iommu.c 20romstage-y += romstage.c 21 22ramstage-y += acpi.c 23 24ramstage-y += memmap.c 25ramstage-y += northbridge.c 26ramstage-y += gma.c 27 28postcar-y += memmap.c 29 30endif 31