blob: 836397822a50168a5bf9838dd75745695e922d13 [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
Arthur Heymans16fe7902017-04-12 17:01:31 +020019 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Arthur Heymans10ed3742019-05-29 14:57:06 +020020 select SOUTHBRIDGE_INTEL_COMMON_SPI if !BOARD_EMULATION_QEMU_X86_Q35
Arthur Heymanse798e6a2017-12-23 23:09:54 +010021 select SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
Arthur Heymansb8bda112019-06-04 13:57:47 +020022 select SOUTHBRIDGE_INTEL_COMMON_PMBASE
Arthur Heymans074730c2019-06-04 14:05:53 +020023 select SOUTHBRIDGE_INTEL_COMMON_RTC
Arthur Heymans23a6c792019-10-13 22:36:04 +020024 select SOUTHBRIDGE_INTEL_COMMON_RESET
Patrick Georgie72a8a32012-11-06 11:05:09 +010025 select IOAPIC
Patrick Georgie72a8a32012-11-06 11:05:09 +010026 select USE_WATCHDOG_ON_BOOT
27 select HAVE_SMI_HANDLER
Vladimir Serbinenko787cbae2014-07-29 22:40:05 +020028 select HAVE_USBDEBUG_OPTIONS
Patrick Rudolph5919ba42015-12-26 08:35:08 +010029 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Arthur Heymansaade90e2018-01-25 00:33:45 +010030 select SOUTHBRIDGE_INTEL_COMMON_SMM
Patrick Rudolphad0b4822019-04-13 16:56:23 +020031 select SOUTHBRIDGE_INTEL_COMMON_PMCLIB
Stefan Tauneref8b9572018-09-06 00:34:28 +020032 select INTEL_DESCRIPTOR_MODE_CAPABLE
Arthur Heymansaade90e2018-01-25 00:33:45 +010033 select ACPI_INTEL_HARDWARE_SLEEP_VALUES
Elyes HAOUAS551a7592019-05-01 16:56:36 +020034 select SOUTHBRIDGE_INTEL_COMMON_WATCHDOG
Arthur Heymans3457df12019-11-16 10:04:41 +010035 select SOUTHBRIDGE_INTEL_COMMON_USB_DEBUG
Patrick Georgie72a8a32012-11-06 11:05:09 +010036
37if SOUTHBRIDGE_INTEL_I82801IX
38
39config EHCI_BAR
40 hex
41 default 0xfef00000
42
Angel Ponsa52016c2018-09-11 13:49:45 +020043## Some enterprise variants may require an IFD
44config INTEL_DESCRIPTOR_MODE_REQUIRED
45 bool
46 default n
47
Vladimir Serbinenko33769a52014-08-30 22:39:20 +020048config HPET_MIN_TICKS
49 hex
50 default 0x80
51
Patrick Georgie72a8a32012-11-06 11:05:09 +010052endif