blob: 9fd19ed3242f6c18ba46bfffe7a41df9e2477240 [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
Stefan Reinauer8a7d34b2010-02-22 09:15:13 +000021 select HAVE_HARD_RESET
Uwe Hermann65e60342010-09-26 07:35:55 +000022 select HAVE_USBDEBUG
Stefan Reinauerde3206a2010-02-22 06:09:43 +000023 select USE_WATCHDOG_ON_BOOT
Stefan Reinauer431a8162012-11-13 13:01:31 -080024 select HAVE_SMI_HANDLER
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +020025 select COMMON_FADT
Arthur Heymans62902ca2016-11-29 14:13:43 +010026 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Arthur Heymans16fe7902017-04-12 17:01:31 +020027 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Arthur Heymansbddef0d2017-09-25 12:21:07 +020028 select SOUTHBRIDGE_INTEL_COMMON_SPI
Patrick Georgi0588d192009-08-12 15:00:51 +000029
Stefan Reinauerb3ae1862011-04-18 23:51:12 +000030if SOUTHBRIDGE_INTEL_I82801GX
31
Patrick Georgi5692c572010-10-05 13:40:31 +000032config EHCI_BAR
33 hex
Stefan Reinauerb3ae1862011-04-18 23:51:12 +000034 default 0xfef00000
Patrick Georgi5692c572010-10-05 13:40:31 +000035
Sven Schnelle49ae9712011-05-03 07:55:30 +000036config BOOTBLOCK_SOUTHBRIDGE_INIT
Martin Roth595e7772015-04-26 18:53:26 -060037 string
Sven Schnelle49ae9712011-05-03 07:55:30 +000038 default "southbridge/intel/i82801gx/bootblock.c"
Patrick Georgi9aeb6942012-10-05 21:54:38 +020039
40config HPET_MIN_TICKS
41 hex
42 default 0x80
Sven Schnelle49ae9712011-05-03 07:55:30 +000043
Stefan Reinauerb3ae1862011-04-18 23:51:12 +000044endif