blob: 32fddc4742b4dd6d56371de950f85866370e0583 [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 Ponsb4492392021-01-06 01:56:14 +010010ramstage-y += common.c
Angel Pons530cde82020-07-12 14:11:16 +020011ramstage-y += fadt.c
Patrick Georgi23f38cd2012-11-16 14:50:32 +010012ramstage-y += lpc.c
13ramstage-y += pci.c
14ramstage-y += pcie.c
15ramstage-y += sata.c
16ramstage-y += usb_ehci.c
Duncan Laurie645b3762013-02-12 14:00:47 -080017ramstage-y += usb_xhci.c
Patrick Georgi23f38cd2012-11-16 14:50:32 +010018ramstage-y += me.c
19ramstage-y += me_8.x.c
Angel Pons4def30d2020-06-02 20:10:36 +020020ramstage-y += me_common.c
Patrick Georgi23f38cd2012-11-16 14:50:32 +010021ramstage-y += smbus.c
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010022ramstage-y += ../common/pciehp.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020023
24ramstage-y += me_status.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020025
Duncan Laurie800e9502012-06-23 17:06:47 -070026ramstage-$(CONFIG_ELOG) += elog.c
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070027
Angel Ponsb4492392021-01-06 01:56:14 +010028smm-y += common.c smihandler.c me_smm.c me_common.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020029
Angel Ponsb4492392021-01-06 01:56:14 +010030romstage-y += common.c
Angel Ponsd39e6b62020-06-01 19:45:34 +020031romstage-y += me_status.c
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +020032romstage-y += early_rcba.c
Matt DeVillierd6d67712019-04-21 16:49:14 -050033romstage-y += early_pch.c
Stefan Reinauer8e073822012-04-04 00:07:22 +020034
Vladimir Serbinenko144eea02016-02-10 02:36:04 +010035ifeq ($(CONFIG_USE_NATIVE_RAMINIT),y)
Matt DeVillierd6d67712019-04-21 16:49:14 -050036romstage-y += early_thermal.c early_me.c early_usb.c
Vladimir Serbinenko144eea02016-02-10 02:36:04 +010037else
38romstage-y += early_me_mrc.c early_usb_mrc.c
39endif
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020040
Kyösti Mälkki661ad462020-12-29 06:26:21 +020041CPPFLAGS_common += -I$(src)/southbridge/intel/bd82x6x/include
42
Stefan Reinauer13e41822015-04-27 14:02:36 -070043endif