blob: 0000913acfe9bf6d875ecded280b9d4ab7461284 [file] [log] [blame]
Patrick Georgic49d7a32020-05-08 22:50:46 +02001## SPDX-License-Identifier: GPL-2.0-only
Patrick Georgie72a8a32012-11-06 11:05:09 +01002
Stefan Reinauer13e41822015-04-27 14:02:36 -07003ifeq ($(CONFIG_SOUTHBRIDGE_INTEL_I82801IX),y)
4
Angel Ponsa69a6872020-06-21 15:20:31 +02005bootblock-y += bootblock.c
6bootblock-y += early_init.c
7
8romstage-y += dmi_setup.c
9romstage-y += early_init.c
Angel Ponsa69a6872020-06-21 15:20:31 +020010
Angel Pons0cd80272020-07-21 20:35:30 +020011ramstage-y += azalia.c
Kyösti Mälkki64e07eb2020-05-30 14:50:50 +030012ramstage-y += fadt.c
Angel Ponsa69a6872020-06-21 15:20:31 +020013ramstage-y += i82801ix.c
14ramstage-y += lpc.c
15ramstage-y += pci.c
16ramstage-y += pcie.c
17ramstage-y += sata.c
Vladimir Serbinenkocaf1df02014-08-01 02:49:27 +020018ramstage-y += smbus.c
Angel Ponsa69a6872020-06-21 15:20:31 +020019ramstage-y += thermal.c
20ramstage-y += usb_ehci.c
Vladimir Serbinenko36fa5b82014-10-28 23:43:20 +010021ramstage-y += ../common/pciehp.c
Patrick Georgie72a8a32012-11-06 11:05:09 +010022
Angel Ponsa69a6872020-06-21 15:20:31 +020023smm-y += smihandler.c
24
Angel Pons3b7983a2021-01-28 12:14:12 +010025ifneq ($(CONFIG_BOARD_EMULATION_QEMU_X86_Q35),y)
26ramstage-y += madt.c
27endif
28
Kyösti Mälkki661ad462020-12-29 06:26:21 +020029CPPFLAGS_common += -I$(src)/southbridge/intel/i82801ix/include
30
Stefan Reinauer13e41822015-04-27 14:02:36 -070031endif