1## SPDX-License-Identifier: GPL-2.0-only 2 3ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_IBEXPEAK),y) 4 5bootblock-y += bootblock.c 6 7ramstage-y += pch.c 8ramstage-y += azalia.c 9ramstage-y += fadt.c 10ramstage-y += lpc.c 11ramstage-y += ../bd82x6x/pci.c 12ramstage-y += sata.c 13ramstage-y += usb_ehci.c 14ramstage-y += me.c 15ramstage-y += ../bd82x6x/me_common.c 16ramstage-y += smbus.c 17ramstage-y += thermal.c 18ramstage-y += ../common/pciehp.c 19 20ramstage-y += ../bd82x6x/me_status.c 21 22ramstage-$(CONFIG_ELOG) += ../bd82x6x/elog.c 23 24smm-y += smihandler.c 25 26romstage-y += early_pch.c 27romstage-y +=../bd82x6x/early_me.c 28romstage-y +=../bd82x6x/me_status.c 29romstage-y += early_thermal.c 30romstage-y += ../bd82x6x/early_rcba.c 31romstage-y += early_cir.c 32romstage-y += early_usb.c 33romstage-y += setup_heci_uma.c 34 35endif 36