1## SPDX-License-Identifier: GPL-2.0-only 2 3ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_I82801GX),y) 4 5bootblock-y += early_init.c 6bootblock-y += bootblock.c 7 8ramstage-y += i82801gx.c 9ramstage-y += fadt.c 10ramstage-y += ac97.c 11ramstage-y += azalia.c 12ramstage-y += ide.c 13ramstage-y += lpc.c 14ramstage-y += pci.c 15ramstage-y += pcie.c 16ramstage-y += sata.c 17ramstage-y += smbus.c 18ramstage-y += usb.c 19ramstage-y += usb_ehci.c 20 21smm-y += smihandler.c 22 23romstage-y += early_init.c 24romstage-y += early_cir.c 25 26CPPFLAGS_common += -I$(src)/southbridge/intel/i82801gx/include 27 28endif 29