blob: 429a3040f2c59b71a3217a5b6d7799f53a63d74d [file] [log] [blame]
Uwe Hermann2d2f0c12009-10-28 17:36:11 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2009 coresystems GmbH
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; version 2 of the License.
9##
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##
Jens Rottmann9a684fc2010-08-30 16:36:51 +000015if BOARD_INTEL_D945GCLF
Uwe Hermann2d2f0c12009-10-28 17:36:11 +000016
Jens Rottmann9a684fc2010-08-30 16:36:51 +000017config BOARD_SPECIFIC_OPTIONS # dummy
18 def_bool y
Myles Watson59968f52009-12-02 05:43:50 +000019 select CPU_INTEL_SOCKET_441
Kyösti Mälkkieb5e28f2012-02-24 16:08:18 +020020 select NORTHBRIDGE_INTEL_I945
21 select NORTHBRIDGE_INTEL_SUBTYPE_I945GC
Peter Stuge751508a2012-01-27 22:17:09 +010022 select CHECK_SLFRCS_ON_RESUME
Stefan Reinauer1a08f582009-10-28 16:52:48 +000023 select SOUTHBRIDGE_INTEL_I82801GX
Myles Watson4ec4fbe2009-10-28 18:51:47 +000024 select SUPERIO_SMSC_LPC47M15X
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000025 select HAVE_OPTION_TABLE
Stefan Reinauer1a08f582009-10-28 16:52:48 +000026 select HAVE_PIRQ_TABLE
27 select HAVE_MP_TABLE
Patrick Georgid5663ba2010-01-18 17:30:36 +000028 select HAVE_ACPI_TABLES
Patrick Georgi2b962a3c2010-01-25 10:50:21 +000029 select HAVE_ACPI_RESUME
Patrick Georgi29647d92010-01-25 07:56:01 +000030 select BOARD_ROMSIZE_KB_512
Patrick Georgi77d66832010-10-01 08:02:45 +000031 select CHANNEL_XOR_RANDOMIZATION
Stefan Reinauer1a08f582009-10-28 16:52:48 +000032
33config MAINBOARD_DIR
34 string
35 default intel/d945gclf
Stefan Reinauer1a08f582009-10-28 16:52:48 +000036
Stefan Reinauer1a08f582009-10-28 16:52:48 +000037config MAINBOARD_PART_NUMBER
38 string
39 default "D945GCLF"
Stefan Reinauer1a08f582009-10-28 16:52:48 +000040
41config MMCONF_BASE_ADDRESS
42 hex
43 default 0xf0000000
Stefan Reinauer1a08f582009-10-28 16:52:48 +000044
45config IRQ_SLOT_COUNT
46 int
47 default 18
Stefan Reinauer1a08f582009-10-28 16:52:48 +000048
Patrick Georgi29647d92010-01-25 07:56:01 +000049config MAX_CPUS
50 int
51 default 4
Patrick Georgi29647d92010-01-25 07:56:01 +000052
Jens Rottmann9a684fc2010-08-30 16:36:51 +000053endif # BOARD_INTEL_D945GCLF