Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 1 | ## |
| 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 Reinauer | e1133b7 | 2015-04-27 14:04:38 -0700 | [diff] [blame] | 20 | ifeq ($(CONFIG_NORTHBRIDGE_VIA_VX900),y) |
| 21 | |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 22 | romstage-y += pci_util.c |
| 23 | romstage-y += early_smbus.c |
| 24 | romstage-y += early_vx900.c |
| 25 | romstage-y += early_host_bus_ctl.c |
Alexandru Gagniuc | 7d31e7c | 2013-06-08 11:49:10 -0500 | [diff] [blame] | 26 | romstage-y += raminit_ddr3.c |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 27 | romstage-y += ./../../../device/dram/ddr3.c |
| 28 | romstage-y += ./../../../southbridge/via/common/early_smbus_delay.c |
| 29 | romstage-y += ./../../../southbridge/via/common/early_smbus_is_busy.c |
| 30 | romstage-y += ./../../../southbridge/via/common/early_smbus_print_error.c |
| 31 | romstage-y += ./../../../southbridge/via/common/early_smbus_reset.c |
| 32 | romstage-y += ./../../../southbridge/via/common/early_smbus_wait_until_ready.c |
| 33 | romstage-y += ./../../../drivers/pc80/udelay_io.c |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 34 | |
Alexandru Gagniuc | 23211b0 | 2013-06-09 16:06:07 -0500 | [diff] [blame] | 35 | ramstage-y += pci_util.c |
| 36 | ramstage-y += pcie.c |
| 37 | ramstage-y += northbridge.c |
| 38 | ramstage-y += chrome9hd.c |
| 39 | ramstage-y += traf_ctrl.c |
| 40 | ramstage-y += sata.c |
| 41 | ramstage-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 |
| 46 | ramstage-y += ./../../../drivers/pc80/vga/vga_io.c |
Alexandru Gagniuc | 88a3023 | 2013-06-04 23:37:56 -0500 | [diff] [blame] | 47 | |
| 48 | |
Patrick Georgi | 990e7c9 | 2015-04-03 10:47:15 +0200 | [diff] [blame] | 49 | bootblock-y += romstrap.ld |
Stefan Reinauer | e1133b7 | 2015-04-27 14:04:38 -0700 | [diff] [blame] | 50 | |
| 51 | endif |