blob: 44f0ae01cebae6d544db45b3cc0cff7ff7eb9225 [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##
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050016
Stefan Reinauere1133b72015-04-27 14:04:38 -070017ifeq ($(CONFIG_NORTHBRIDGE_VIA_VX900),y)
18
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050019romstage-y += pci_util.c
20romstage-y += early_smbus.c
21romstage-y += early_vx900.c
22romstage-y += early_host_bus_ctl.c
Alexandru Gagniuc7d31e7c2013-06-08 11:49:10 -050023romstage-y += raminit_ddr3.c
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050024romstage-y += ./../../../device/dram/ddr3.c
25romstage-y += ./../../../southbridge/via/common/early_smbus_delay.c
26romstage-y += ./../../../southbridge/via/common/early_smbus_is_busy.c
27romstage-y += ./../../../southbridge/via/common/early_smbus_print_error.c
28romstage-y += ./../../../southbridge/via/common/early_smbus_reset.c
29romstage-y += ./../../../southbridge/via/common/early_smbus_wait_until_ready.c
30romstage-y += ./../../../drivers/pc80/udelay_io.c
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050031
Alexandru Gagniuc23211b02013-06-09 16:06:07 -050032ramstage-y += pci_util.c
33ramstage-y += pcie.c
34ramstage-y += northbridge.c
35ramstage-y += chrome9hd.c
36ramstage-y += traf_ctrl.c
37ramstage-y += sata.c
38ramstage-y += lpc.c
39
40# The buildsystem only includes this file if CONFIG_VGA is selected.
41# We need to do some VGA I/O before the VGA can be initialized. We can make good
42# use of some of the functions there, so include them unconditionally
43ramstage-y += ./../../../drivers/pc80/vga/vga_io.c
Alexandru Gagniuc88a30232013-06-04 23:37:56 -050044
45
Patrick Georgi990e7c92015-04-03 10:47:15 +020046bootblock-y += romstrap.ld
Alexandru Gagniuc8a137432015-10-05 08:00:51 -070047bootblock-y += romstrap.S
Stefan Reinauere1133b72015-04-27 14:04:38 -070048
49endif