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