blob: 4b78118e4d631e07e2d33d012b04b1bf75165edc [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
31 select SPI_FLASH
32 select SOUTHBRIDGE_INTEL_COMMON
Arthur Heymans16fe7902017-04-12 17:01:31 +020033 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Vladimir Serbinenkof55f51a2013-11-25 23:40:01 +010034 select HAVE_USBDEBUG_OPTIONS
Vladimir Serbinenko67bfbfd2014-10-25 15:49:23 +020035 select COMMON_FADT
Alexander Couzensbeb31d02015-04-16 02:23:00 +020036 select ACPI_SATA_GENERATOR
Martin Roth3fda3c22015-07-09 21:02:26 -060037 select HAVE_INTEL_FIRMWARE
Patrick Rudolph10104682016-02-06 18:12:28 +010038 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Bill XIEd533b162017-08-22 16:26:22 +080039 select HAVE_INTEL_CHIPSET_LOCKDOWN
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010040
41config EHCI_BAR
42 hex
43 default 0xfef00000
44
Vladimir Serbinenko6a7aeb32014-01-05 11:37:32 +010045config DRAM_RESET_GATE_GPIO
46 int
47 default 60
48
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010049config BOOTBLOCK_SOUTHBRIDGE_INIT
50 string
51 default "southbridge/intel/bd82x6x/bootblock.c"
52
53config SERIRQ_CONTINUOUS_MODE
54 bool
55 default n
56 help
57 If you set this option to y, the serial IRQ machine will be
58 operated in continuous mode.
59
60config BUILD_WITH_FAKE_IFD
Martin Roth3fda3c22015-07-09 21:02:26 -060061 def_bool !HAVE_IFD_BIN
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010062
63config HPET_MIN_TICKS
64 hex
65 default 0x80
66
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010067endif