blob: 161290f852800116e5d904f8904330dbb456b9d9 [file] [log] [blame]
Arthur Heymans7b9c1392017-04-09 20:40:39 +02001##
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
17config SOUTHBRIDGE_INTEL_I82801JX
18 bool
Arthur Heymans16fe7902017-04-12 17:01:31 +020019 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Arthur Heymans0c891d22017-09-25 12:43:31 +020020 select SOUTHBRIDGE_INTEL_COMMON_SPI
Arthur Heymansa8a9f342017-12-24 08:11:13 +010021 select SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
Patrick Rudolph01686392019-03-24 14:57:49 +010022 select SOUTHBRIDGE_INTEL_COMMON_PMCLIB
Arthur Heymansb8bda112019-06-04 13:57:47 +020023 select SOUTHBRIDGE_INTEL_COMMON_PMBASE
Arthur Heymans074730c2019-06-04 14:05:53 +020024 select SOUTHBRIDGE_INTEL_COMMON_RTC
Arthur Heymans23a6c792019-10-13 22:36:04 +020025 select SOUTHBRIDGE_INTEL_COMMON_RESET
Arthur Heymans7b9c1392017-04-09 20:40:39 +020026 select IOAPIC
Arthur Heymans7b9c1392017-04-09 20:40:39 +020027 select USE_WATCHDOG_ON_BOOT
28 select HAVE_SMI_HANDLER
29 select HAVE_USBDEBUG_OPTIONS
30 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Stefan Tauneref8b9572018-09-06 00:34:28 +020031 select INTEL_DESCRIPTOR_MODE_CAPABLE
Arthur Heymansad501492017-04-12 00:15:39 +020032 select COMMON_FADT
Arthur Heymans6af3e6f2018-04-10 13:18:19 +020033 select SOUTHBRIDGE_INTEL_COMMON_SMM
Joel Kitching1d93b882018-09-26 17:58:14 +080034 select ACPI_INTEL_HARDWARE_SLEEP_VALUES
Nico Huber9faae2b2018-11-14 00:00:35 +010035 select HAVE_POWER_STATE_AFTER_FAILURE
36 select HAVE_POWER_STATE_PREVIOUS_AFTER_FAILURE
Elyes HAOUAS551a7592019-05-01 16:56:36 +020037 select SOUTHBRIDGE_INTEL_COMMON_WATCHDOG
Arthur Heymans3457df12019-11-16 10:04:41 +010038 select SOUTHBRIDGE_INTEL_COMMON_USB_DEBUG
Arthur Heymans7b9c1392017-04-09 20:40:39 +020039
40if SOUTHBRIDGE_INTEL_I82801JX
41
42config EHCI_BAR
43 hex
44 default 0xfef00000
45
Angel Ponsa52016c2018-09-11 13:49:45 +020046## Some enterprise variants may require an IFD
47config INTEL_DESCRIPTOR_MODE_REQUIRED
48 bool
49 default n
50
Arthur Heymans7b9c1392017-04-09 20:40:39 +020051config HPET_MIN_TICKS
52 hex
53 default 0x80
Arthur Heymans7b9c1392017-04-09 20:40:39 +020054endif