blob: ec30af8e764e33522998d2b122e76d721ee54d6b [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
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
21config SOUTHBRIDGE_INTEL_I82801IX
22 bool
23 select IOAPIC
24 select HAVE_USBDEBUG
25 select HAVE_HARD_RESET
26 select USE_WATCHDOG_ON_BOOT
27 select HAVE_SMI_HANDLER
28
29if SOUTHBRIDGE_INTEL_I82801IX
30
31config EHCI_BAR
32 hex
33 default 0xfef00000
34
35config EHCI_DEBUG_OFFSET
36 hex
37 default 0xa0
38
39config USBDEBUG_DEFAULT_PORT
40 int
41 default 1
42
43config BOOTBLOCK_SOUTHBRIDGE_INIT
44 string
45 default "southbridge/intel/i82801ix/bootblock.c"
46
47endif
48