blob: 34a3281d789c6e12d55e7362cd28ef946f9fabb3 [file] [log] [blame]
Anders Jenbo9d1c76f2010-05-14 19:50:11 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2010 Anders Jenbo <anders@jenbo.dk>
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##
Jens Rottmann9a684fc2010-08-30 16:36:51 +000020if BOARD_GIGABYTE_GA_6BXE
Anders Jenbo9d1c76f2010-05-14 19:50:11 +000021
Jens Rottmann9a684fc2010-08-30 16:36:51 +000022config BOARD_SPECIFIC_OPTIONS # dummy
23 def_bool y
Anders Jenbo9d1c76f2010-05-14 19:50:11 +000024 select ARCH_X86
25 select CPU_INTEL_SLOT_1
26 select NORTHBRIDGE_INTEL_I440BX
27 select SOUTHBRIDGE_INTEL_I82371EB
28 select SUPERIO_ITE_IT8671F
29 select ROMCC
30 select HAVE_PIRQ_TABLE
31 select UDELAY_TSC
32 select BOARD_ROMSIZE_KB_256
33 select SDRAMPWR_4DIMM
34
35config MAINBOARD_DIR
36 string
37 default gigabyte/ga-6bxe
Anders Jenbo9d1c76f2010-05-14 19:50:11 +000038
39config MAINBOARD_PART_NUMBER
40 string
41 default "GA-6BXE"
Anders Jenbo9d1c76f2010-05-14 19:50:11 +000042
Anders Jenbo9d1c76f2010-05-14 19:50:11 +000043config IRQ_SLOT_COUNT
44 int
45 default 7
Anders Jenbo9d1c76f2010-05-14 19:50:11 +000046
Jens Rottmann9a684fc2010-08-30 16:36:51 +000047endif # BOARD_GIGABYTE_GA_6BXE