blob: 70b2734797e6e8e44410cc9b5eb8791dac7cc3fa [file] [log] [blame]
Martin Rothbf6b83a2015-10-11 10:37:02 +02001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2011 Google Inc.
5## Copyright (C) 2013 Sage Electronic Engineering, LLC.
6##
7## This program is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as published by
9## the Free Software Foundation; version 2 of the License.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
Martin Rothbf6b83a2015-10-11 10:37:02 +020016
17config SOUTHBRIDGE_INTEL_FSP_BD82X6X
18 bool
19
20if SOUTHBRIDGE_INTEL_FSP_BD82X6X
21
22config SOUTH_BRIDGE_OPTIONS # dummy
23 def_bool y
24 select IOAPIC
25 select HAVE_HARD_RESET
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 COMMON_FADT
32 select HAVE_INTEL_FIRMWARE
33
34config EHCI_BAR
35 hex
36 default 0xfef00000
37
38config BOOTBLOCK_SOUTHBRIDGE_INIT
39 string
40 default "southbridge/intel/fsp_bd82x6x/bootblock.c"
41
42config SERIRQ_CONTINUOUS_MODE
43 bool
44 default n
45 help
46 If you set this option to y, the serial IRQ machine will be
47 operated in continuous mode.
48
49config HPET_MIN_TICKS
50 hex
51 default 0x80
52
53endif