blob: a4bb5487b9cf449cb2821c4148762fc96c4865c7 [file] [log] [blame]
Uwe Hermann84a0f542009-08-28 16:38:42 +00001##
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
Nils Jacobsdd6ad342010-05-14 09:48:05 +00008## the Free Software Foundation; version 2 of the License.
Uwe Hermann84a0f542009-08-28 16:38:42 +00009##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
20config BOARD_MSI_MS_6178
21 bool "MS-6178"
22 select ARCH_X86
23 select CPU_INTEL_SOCKET_PGA370
24 select NORTHBRIDGE_INTEL_I82810
Stefan Reinauer138be832010-02-27 01:50:21 +000025 select SOUTHBRIDGE_INTEL_I82801AX
Uwe Hermann84a0f542009-08-28 16:38:42 +000026 select SUPERIO_WINBOND_W83627HF
Patrick Georgi2063197a2010-02-09 12:21:10 +000027 select ROMCC
Uwe Hermann84a0f542009-08-28 16:38:42 +000028 select HAVE_PIRQ_TABLE
Uwe Hermannd65509d2009-10-16 17:37:20 +000029 select BOARD_ROMSIZE_KB_512
Uwe Hermann84a0f542009-08-28 16:38:42 +000030
31config MAINBOARD_DIR
32 string
33 default msi/ms6178
34 depends on BOARD_MSI_MS_6178
35
36config MAINBOARD_PART_NUMBER
37 string
38 default "MS-6178"
39 depends on BOARD_MSI_MS_6178
40
41config HAVE_OPTION_TABLE
42 bool
43 default n
44 depends on BOARD_MSI_MS_6178
45
46config IRQ_SLOT_COUNT
47 int
48 default 4
49 depends on BOARD_MSI_MS_6178
50
Uwe Hermann81b3c0a2009-10-30 12:56:59 +000051# No need to override the chipset FALLBACK_VGA_BIOS_ID.
52config FALLBACK_VGA_BIOS_FILE
53 string
54 default "i810.vga"
55 depends on BOARD_MSI_MS_6178
56