blob: 9e88a2830b59d6f2b0a34b379eec6135ae568962 [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##
Patrick Georgie72a8a32012-11-06 11:05:09 +010016
17config SOUTHBRIDGE_INTEL_I82801IX
18 bool
Kyösti Mälkki71216c92013-07-28 23:39:37 +030019 select SOUTHBRIDGE_INTEL_COMMON
Arthur Heymans16fe7902017-04-12 17:01:31 +020020 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Arthur Heymanse798e6a2017-12-23 23:09:54 +010021 select SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
Patrick Georgie72a8a32012-11-06 11:05:09 +010022 select IOAPIC
23 select HAVE_USBDEBUG
24 select HAVE_HARD_RESET
25 select USE_WATCHDOG_ON_BOOT
26 select HAVE_SMI_HANDLER
Vladimir Serbinenko787cbae2014-07-29 22:40:05 +020027 select HAVE_USBDEBUG_OPTIONS
Patrick Rudolph5919ba42015-12-26 08:35:08 +010028 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Arthur Heymansaade90e2018-01-25 00:33:45 +010029 select SOUTHBRIDGE_INTEL_COMMON_SMM
Stefan Tauneref8b9572018-09-06 00:34:28 +020030 select INTEL_DESCRIPTOR_MODE_CAPABLE
Arthur Heymansaade90e2018-01-25 00:33:45 +010031 select ACPI_INTEL_HARDWARE_SLEEP_VALUES
Patrick Georgie72a8a32012-11-06 11:05:09 +010032
33if SOUTHBRIDGE_INTEL_I82801IX
34
35config EHCI_BAR
36 hex
37 default 0xfef00000
38
Vladimir Serbinenko33769a52014-08-30 22:39:20 +020039config HPET_MIN_TICKS
40 hex
41 default 0x80
42
Patrick Georgie72a8a32012-11-06 11:05:09 +010043config BOOTBLOCK_SOUTHBRIDGE_INIT
Martin Roth595e7772015-04-26 18:53:26 -060044 string
Patrick Georgie72a8a32012-11-06 11:05:09 +010045 default "southbridge/intel/i82801ix/bootblock.c"
46
47endif