blob: 5053a1fb2a7baf8f803aec0ca4e6301d335fbc01 [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2008-2009 coresystems GmbH
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
Patrick Georgi0588d192009-08-12 15:00:51 +000015
16config SOUTHBRIDGE_INTEL_I82801GX
17 bool
Aaron Durbine9919452016-07-13 23:24:55 -050018 select ACPI_INTEL_HARDWARE_SLEEP_VALUES
Kyösti Mälkki71216c92013-07-28 23:39:37 +030019 select SOUTHBRIDGE_INTEL_COMMON
Patrick Georgid5663ba2010-01-18 17:30:36 +000020 select IOAPIC
Uwe Hermann65e60342010-09-26 07:35:55 +000021 select HAVE_USBDEBUG
Stefan Reinauerde3206a2010-02-22 06:09:43 +000022 select USE_WATCHDOG_ON_BOOT
Stefan Reinauer431a8162012-11-13 13:01:31 -080023 select HAVE_SMI_HANDLER
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +020024 select COMMON_FADT
Arthur Heymans62902ca2016-11-29 14:13:43 +010025 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Arthur Heymans16fe7902017-04-12 17:01:31 +020026 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Arthur Heymansbddef0d2017-09-25 12:21:07 +020027 select SOUTHBRIDGE_INTEL_COMMON_SPI
Patrick Rudolph425e75a2019-03-24 15:06:17 +010028 select SOUTHBRIDGE_INTEL_COMMON_PMCLIB
Arthur Heymansb8bda112019-06-04 13:57:47 +020029 select SOUTHBRIDGE_INTEL_COMMON_PMBASE
Arthur Heymans36646472018-01-22 14:42:18 +010030 select HAVE_INTEL_CHIPSET_LOCKDOWN
Arthur Heymansa8a9f342017-12-24 08:11:13 +010031 select SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
Arthur Heymansb9c049a2018-07-27 15:29:21 +020032 select INTEL_HAS_TOP_SWAP
Arthur Heymans31312b22018-04-10 12:56:19 +020033 select SOUTHBRIDGE_INTEL_COMMON_SMM
Elyes HAOUAS551a7592019-05-01 16:56:36 +020034 select SOUTHBRIDGE_INTEL_COMMON_WATCHDOG
Patrick Georgi0588d192009-08-12 15:00:51 +000035
Stefan Reinauerb3ae1862011-04-18 23:51:12 +000036if SOUTHBRIDGE_INTEL_I82801GX
37
Patrick Georgi5692c572010-10-05 13:40:31 +000038config EHCI_BAR
39 hex
Stefan Reinauerb3ae1862011-04-18 23:51:12 +000040 default 0xfef00000
Patrick Georgi5692c572010-10-05 13:40:31 +000041
Sven Schnelle49ae9712011-05-03 07:55:30 +000042config BOOTBLOCK_SOUTHBRIDGE_INIT
Martin Roth595e7772015-04-26 18:53:26 -060043 string
Sven Schnelle49ae9712011-05-03 07:55:30 +000044 default "southbridge/intel/i82801gx/bootblock.c"
Patrick Georgi9aeb6942012-10-05 21:54:38 +020045
46config HPET_MIN_TICKS
47 hex
48 default 0x80
Sven Schnelle49ae9712011-05-03 07:55:30 +000049
Arthur Heymansb9c049a2018-07-27 15:29:21 +020050config INTEL_TOP_SWAP_BOOTBLOCK_SIZE
51 hex
52 # Always 64K, all other options are invalid
53 default 0x10000
54
Stefan Reinauerb3ae1862011-04-18 23:51:12 +000055endif