blob: 0a4cc8333b53ca7d89002527cec1bc8697a3ad61 [file] [log] [blame]
Angel Ponsa0195242020-04-01 13:34:54 +02001## SPDX-License-Identifier: GPL-2.0-only
Stefan Reinauer8e073822012-04-04 00:07:22 +02002
Stefan Reinauer13e41822015-04-27 14:02:36 -07003ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_C216)$(CONFIG_SOUTHBRIDGE_INTEL_BD82X6X),y)
4
Arthur Heymans360d9472019-11-12 18:11:03 +01005bootblock-y += bootblock.c
6bootblock-y += early_pch.c
7
Patrick Georgi23f38cd2012-11-16 14:50:32 +01008ramstage-y += pch.c
9ramstage-y += azalia.c
Angel Pons530cde82020-07-12 14:11:16 +020010ramstage-y += fadt.c
Patrick Georgi23f38cd2012-11-16 14:50:32 +010011ramstage-y += lpc.c
12ramstage-y += pci.c
13ramstage-y += pcie.c
14ramstage-y += sata.c
15ramstage-y += usb_ehci.c
Duncan Laurie645b3762013-02-12 14:00:47 -080016ramstage-y += usb_xhci.c
Patrick Georgi23f38cd2012-11-16 14:50:32 +010017ramstage-y += me.c
18ramstage-y += me_8.x.c
Angel Pons4def30d2020-06-02 20:10:36 +020019ramstage-y += me_common.c
Patrick Georgi23f38cd2012-11-16 14:50:32 +010020ramstage-y += smbus.c
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010021ramstage-y += ../common/pciehp.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020022
23ramstage-y += me_status.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020024
Duncan Laurie800e9502012-06-23 17:06:47 -070025ramstage-$(CONFIG_ELOG) += elog.c
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070026
Angel Pons5deff302021-01-27 12:25:52 +010027smm-y += smihandler.c me_smm.c pch.c me_common.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020028
Angel Ponsd39e6b62020-06-01 19:45:34 +020029romstage-y += me_status.c
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +020030romstage-y += early_rcba.c
Matt DeVillierd6d67712019-04-21 16:49:14 -050031romstage-y += early_pch.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020032
Vladimir Serbinenko144eea02016-02-10 02:36:04 +010033ifeq ($(CONFIG_USE_NATIVE_RAMINIT),y)
Matt DeVillierd6d67712019-04-21 16:49:14 -050034romstage-y += early_thermal.c early_me.c early_usb.c
Vladimir Serbinenko144eea02016-02-10 02:36:04 +010035else
36romstage-y += early_me_mrc.c early_usb_mrc.c
37endif
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020038
Kyösti Mälkki661ad462020-12-29 06:26:21 +020039CPPFLAGS_common += -I$(src)/southbridge/intel/bd82x6x/include
40
Stefan Reinauer13e41822015-04-27 14:02:36 -070041endif