blob: fc8f425d2992ed0cae935ce58bf47a2d2d403d4f [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##
Jens Rottmann9a684fc2010-08-30 16:36:51 +000019if BOARD_MSI_MS_6178
Uwe Hermann84a0f542009-08-28 16:38:42 +000020
Jens Rottmann9a684fc2010-08-30 16:36:51 +000021config BOARD_SPECIFIC_OPTIONS # dummy
22 def_bool y
Uwe Hermann84a0f542009-08-28 16:38:42 +000023 select ARCH_X86
24 select CPU_INTEL_SOCKET_PGA370
25 select NORTHBRIDGE_INTEL_I82810
Stefan Reinauer138be832010-02-27 01:50:21 +000026 select SOUTHBRIDGE_INTEL_I82801AX
Uwe Hermann84a0f542009-08-28 16:38:42 +000027 select SUPERIO_WINBOND_W83627HF
Patrick Georgi2063197a2010-02-09 12:21:10 +000028 select ROMCC
Uwe Hermann84a0f542009-08-28 16:38:42 +000029 select HAVE_PIRQ_TABLE
Uwe Hermannd65509d2009-10-16 17:37:20 +000030 select BOARD_ROMSIZE_KB_512
Joseph Smith992ae482010-06-20 18:59:40 +000031 select HAVE_MAINBOARD_RESOURCES
32 select GFXUMA
Uwe Hermann84a0f542009-08-28 16:38:42 +000033
34config MAINBOARD_DIR
35 string
36 default msi/ms6178
Uwe Hermann84a0f542009-08-28 16:38:42 +000037
38config MAINBOARD_PART_NUMBER
39 string
40 default "MS-6178"
Uwe Hermann84a0f542009-08-28 16:38:42 +000041
Uwe Hermann84a0f542009-08-28 16:38:42 +000042config IRQ_SLOT_COUNT
43 int
44 default 4
Uwe Hermann84a0f542009-08-28 16:38:42 +000045
Uwe Hermann81b3c0a2009-10-30 12:56:59 +000046# No need to override the chipset FALLBACK_VGA_BIOS_ID.
47config FALLBACK_VGA_BIOS_FILE
48 string
49 default "i810.vga"
Uwe Hermann81b3c0a2009-10-30 12:56:59 +000050
Jens Rottmann9a684fc2010-08-30 16:36:51 +000051endif # BOARD_MSI_MS_6178