blob: e761f9074d1b165b065ef1bf27255a7c93d49fda [file] [log] [blame]
Alexandru Gagniuc88a30232013-06-04 23:37:56 -05001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2011-2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
5##
6## This program is free software: you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation, either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program. If not, see <http://www.gnu.org/licenses/>.
18##
19
Stefan Reinauere1133b72015-04-27 14:04:38 -070020ifeq ($(CONFIG_NORTHBRIDGE_VIA_VX900),y)
21
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050022romstage-y += pci_util.c
23romstage-y += early_smbus.c
24romstage-y += early_vx900.c
25romstage-y += early_host_bus_ctl.c
Alexandru Gagniuc7d31e7c2013-06-08 11:49:10 -050026romstage-y += raminit_ddr3.c
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050027romstage-y += ./../../../device/dram/ddr3.c
28romstage-y += ./../../../southbridge/via/common/early_smbus_delay.c
29romstage-y += ./../../../southbridge/via/common/early_smbus_is_busy.c
30romstage-y += ./../../../southbridge/via/common/early_smbus_print_error.c
31romstage-y += ./../../../southbridge/via/common/early_smbus_reset.c
32romstage-y += ./../../../southbridge/via/common/early_smbus_wait_until_ready.c
33romstage-y += ./../../../drivers/pc80/udelay_io.c
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050034
Alexandru Gagniuc23211b02013-06-09 16:06:07 -050035ramstage-y += pci_util.c
36ramstage-y += pcie.c
37ramstage-y += northbridge.c
38ramstage-y += chrome9hd.c
39ramstage-y += traf_ctrl.c
40ramstage-y += sata.c
41ramstage-y += lpc.c
42
43# The buildsystem only includes this file if CONFIG_VGA is selected.
44# We need to do some VGA I/O before the VGA can be initialized. We can make good
45# use of some of the functions there, so include them unconditionally
46ramstage-y += ./../../../drivers/pc80/vga/vga_io.c
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050047
48
Patrick Georgi990e7c92015-04-03 10:47:15 +020049bootblock-y += romstrap.ld
Stefan Reinauere1133b72015-04-27 14:04:38 -070050
51endif