blob: f12068c707ce4ac7b26a8b80761e3923ccfc4deb [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
23 select IOAPIC
24 select HAVE_HARD_RESET
25 select HAVE_USBDEBUG
26 select HAVE_SMI_HANDLER
27 select USE_WATCHDOG_ON_BOOT
28 select PCIEXP_ASPM
29 select PCIEXP_COMMON_CLOCK
30 select SPI_FLASH
31 select SOUTHBRIDGE_INTEL_COMMON
Vladimir Serbinenkof55f51a2013-11-25 23:40:01 +010032 select HAVE_USBDEBUG_OPTIONS
Vladimir Serbinenko67bfbfd2014-10-25 15:49:23 +020033 select COMMON_FADT
Alexander Couzensbeb31d02015-04-16 02:23:00 +020034 select ACPI_SATA_GENERATOR
Martin Roth3fda3c22015-07-09 21:02:26 -060035 select HAVE_INTEL_FIRMWARE
Patrick Rudolph10104682016-02-06 18:12:28 +010036 select SOUTHBRIDGE_INTEL_COMMON_GPIO
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010037
38config EHCI_BAR
39 hex
40 default 0xfef00000
41
Vladimir Serbinenko6a7aeb32014-01-05 11:37:32 +010042config DRAM_RESET_GATE_GPIO
43 int
44 default 60
45
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010046config BOOTBLOCK_SOUTHBRIDGE_INIT
47 string
48 default "southbridge/intel/bd82x6x/bootblock.c"
49
50config SERIRQ_CONTINUOUS_MODE
51 bool
52 default n
53 help
54 If you set this option to y, the serial IRQ machine will be
55 operated in continuous mode.
56
57config BUILD_WITH_FAKE_IFD
Martin Roth3fda3c22015-07-09 21:02:26 -060058 def_bool !HAVE_IFD_BIN
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010059
60config HPET_MIN_TICKS
61 hex
62 default 0x80
63
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010064endif