blob: 5cf402c7dab1a108f25f00c84d140be4bb87f4e8 [file] [log] [blame]
Vladimir Serbinenko888d5592013-11-13 17:53:38 +01001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2011 Google Inc.
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##
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010015
16config SOUTHBRIDGE_INTEL_IBEXPEAK
17 bool
18
19if SOUTHBRIDGE_INTEL_IBEXPEAK
20
21config SOUTH_BRIDGE_OPTIONS # dummy
22 def_bool y
Aaron Durbin78c68432016-07-13 23:23:54 -050023 select ACPI_INTEL_HARDWARE_SLEEP_VALUES
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010024 select IOAPIC
25 select HAVE_HARD_RESET
26 select HAVE_USBDEBUG
27 select HAVE_SMI_HANDLER
28 select USE_WATCHDOG_ON_BOOT
29 select PCIEXP_ASPM
30 select PCIEXP_COMMON_CLOCK
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010031 select SOUTHBRIDGE_INTEL_COMMON
Kyösti Mälkki90993952018-05-01 19:36:25 +030032 select SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
Arthur Heymans16fe7902017-04-12 17:01:31 +020033 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Arthur Heymansbddef0d2017-09-25 12:21:07 +020034 select SOUTHBRIDGE_INTEL_COMMON_SPI
Vladimir Serbinenkof55f51a2013-11-25 23:40:01 +010035 select HAVE_USBDEBUG_OPTIONS
Vladimir Serbinenko67bfbfd2014-10-25 15:49:23 +020036 select COMMON_FADT
Alexander Couzensbeb31d02015-04-16 02:23:00 +020037 select ACPI_SATA_GENERATOR
Martin Roth3fda3c22015-07-09 21:02:26 -060038 select HAVE_INTEL_FIRMWARE
Patrick Rudolph10104682016-02-06 18:12:28 +010039 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Bill XIEd533b162017-08-22 16:26:22 +080040 select HAVE_INTEL_CHIPSET_LOCKDOWN
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010041
42config EHCI_BAR
43 hex
44 default 0xfef00000
45
Vladimir Serbinenko6a7aeb32014-01-05 11:37:32 +010046config DRAM_RESET_GATE_GPIO
47 int
48 default 60
49
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010050config BOOTBLOCK_SOUTHBRIDGE_INIT
51 string
52 default "southbridge/intel/bd82x6x/bootblock.c"
53
54config SERIRQ_CONTINUOUS_MODE
55 bool
56 default n
57 help
58 If you set this option to y, the serial IRQ machine will be
59 operated in continuous mode.
60
61config BUILD_WITH_FAKE_IFD
Martin Roth3fda3c22015-07-09 21:02:26 -060062 def_bool !HAVE_IFD_BIN
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010063
64config HPET_MIN_TICKS
65 hex
66 default 0x80
67
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010068endif