Kconfig!
[coreboot.git] / src / mainboard / msi / ms6178 / Makefile.inc
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
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, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 driver-y += mainboard.o
22
23 obj-$(CONFIG_HAVE_MP_TABLE) += mptable.o
24 obj-$(CONFIG_HAVE_PIRQ_TABLE) += irq_tables.o
25
26 initobj-y += ../../../arch/i386/init/entry.o
27 initobj-y += ../../../cpu/intel/model_6ex/car.o # FIXME. romcc.
28 # initobj-y += ../../../arch/i386/init/rombootstrap.o
29 # initobj-y += ../../../cpu/intel/model_6ex/disable_car.o
30 initobj-y += ../../../pc80/mc146818rtc_early.o
31 initobj-y += ../../../arch/i386/lib/console.o
32 initobj-y += ../../../arch/i386/lib/console_printk.o
33 # initobj-y += ../../../ram/ramtest.o # FIXME
34 initobj-y += ../../../southbridge/intel/i82801xx/i82801xx_early_smbus.o
35 initobj-y += ../../../southbridge/intel/i82801xx/i82801xx_reset.o
36 initobj-y += ../../../superio/winbond/w83627hf/w83627hf_early_serial.o
37 initobj-y += ../../../northbridge/intel/i82810/raminit.o
38
39 ifdef POST_EVALUATION
40
41 # FIXME: Drop DCACHE_RAM_BASE/DCACHE_RAM_SIZE, only here to make it build.
42 MAINBOARD_OPTIONS=\
43         -DCONFIG_USE_PRINTK_IN_CAR=1 \
44         -DCONFIG_HAVE_HIGH_TABLES=1 \
45         -DCONFIG_MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID=0 \
46         -DCONFIG_MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID=0 \
47         -DCONFIG_MAINBOARD_VENDOR=\"MSI\" \
48         -DCONFIG_MAINBOARD_PART_NUMBER=\"MS-6178\" \
49         -DCONFIG_DCACHE_RAM_BASE=0xffdf8000 \
50         -DCONFIG_DCACHE_RAM_SIZE=0x8000
51
52 endif
53