blob: 92e7f41b8bf2d223ce509aa93e530f30eefd8ba9 [file] [log] [blame]
Patrick Georgie72a8a32012-11-06 11:05:09 +01001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2008-2009 coresystems GmbH
5## 2012 secunet security Networks AG
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; version 2 of the License.
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
Paul Menzela46a7122013-02-23 18:37:27 +010018## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Patrick Georgie72a8a32012-11-06 11:05:09 +010019##
20
21config SOUTHBRIDGE_INTEL_I82801IX
22 bool
Kyösti Mälkki71216c92013-07-28 23:39:37 +030023 select SOUTHBRIDGE_INTEL_COMMON
Patrick Georgie72a8a32012-11-06 11:05:09 +010024 select IOAPIC
25 select HAVE_USBDEBUG
26 select HAVE_HARD_RESET
27 select USE_WATCHDOG_ON_BOOT
28 select HAVE_SMI_HANDLER
Vladimir Serbinenko787cbae2014-07-29 22:40:05 +020029 select HAVE_USBDEBUG_OPTIONS
Patrick Georgie72a8a32012-11-06 11:05:09 +010030
31if SOUTHBRIDGE_INTEL_I82801IX
32
33config EHCI_BAR
34 hex
35 default 0xfef00000
36
Patrick Georgie72a8a32012-11-06 11:05:09 +010037config BOOTBLOCK_SOUTHBRIDGE_INIT
38 string
39 default "southbridge/intel/i82801ix/bootblock.c"
40
41endif
42