blob: e330fb4382eabfeac2d3a7ae06517cf30f05a159 [file] [log] [blame]
Stefan Reinauer8e073822012-04-04 00:07:22 +02001##
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##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
20config SOUTHBRIDGE_INTEL_BD82X6X
21 bool
22
23config SOUTHBRIDGE_INTEL_C216
24 bool
25
26if SOUTHBRIDGE_INTEL_BD82X6X || SOUTHBRIDGE_INTEL_C216
27
28config SOUTH_BRIDGE_OPTIONS # dummy
29 def_bool y
30 select IOAPIC
31 select HAVE_HARD_RESET
32 select HAVE_USBDEBUG
33 select USE_WATCHDOG_ON_BOOT
34 select PCIEXP_ASPM
35 select PCIEXP_COMMON_CLOCK
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070036 select SPI_FLASH
Stefan Reinauer8e073822012-04-04 00:07:22 +020037
38config EHCI_BAR
39 hex
40 default 0xfef00000
41
42config EHCI_DEBUG_OFFSET
43 hex
44 default 0xa0
45
46config 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
Patrick Georgi9aeb6942012-10-05 21:54:38 +020057config HPET_MIN_TICKS
58 hex
59 default 0x80
60
Stefan Reinauer7004b7c2012-10-31 17:30:13 -070061config LOCK_MANAGEMENT_ENGINE
62 bool "Lock Management Engine section"
63 default n
64 help
65 The Intel Management Engine supports preventing write accesses
66 from the host to the Management Engine section in the firmware
67 descriptor. If the ME section is locked, it can only be overwritten
68 with an external SPI flash programmer. You will want this if you
69 want to increase security of your ROM image once you are sure
70 that the ME firmware is no longer going to change.
71
72 If unsure, say N.
73
Stefan Reinauer8e073822012-04-04 00:07:22 +020074endif