blob: 3cf9ffe1e594f8d35a2f42882d81ecc49cc2a727 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001##
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_LYNXPOINT
21 bool
22
23if SOUTHBRIDGE_INTEL_LYNXPOINT
24
25config SOUTH_BRIDGE_OPTIONS # dummy
26 def_bool y
Kyösti Mälkki71216c92013-07-28 23:39:37 +030027 select SOUTHBRIDGE_INTEL_COMMON
Aaron Durbin76c37002012-10-30 09:03:43 -050028 select IOAPIC
29 select HAVE_HARD_RESET
Kyösti Mälkki0306b502013-08-13 09:10:31 +030030 select HAVE_USBDEBUG_OPTIONS
Aaron Durbin76c37002012-10-30 09:03:43 -050031 select USE_WATCHDOG_ON_BOOT
32 select PCIEXP_ASPM
33 select PCIEXP_COMMON_CLOCK
34 select SPI_FLASH
Aaron Durbin94998c42013-01-22 13:54:12 -060035 select ALT_CBFS_LOAD_PAYLOAD
Aaron Durbin76c37002012-10-30 09:03:43 -050036
Duncan Lauriefb9928f2012-12-17 11:11:26 -080037config INTEL_LYNXPOINT_LP
38 bool
39 default n
40 help
41 Set this option to y for Lynxpont LP (Haswell ULT).
42
Aaron Durbin76c37002012-10-30 09:03:43 -050043config EHCI_BAR
44 hex
Kyösti Mälkki0306b502013-08-13 09:10:31 +030045 default 0xe8000000
Aaron Durbin76c37002012-10-30 09:03:43 -050046
47config EHCI_DEBUG_OFFSET
48 hex
49 default 0xa0
50
51config BOOTBLOCK_SOUTHBRIDGE_INIT
52 string
53 default "southbridge/intel/lynxpoint/bootblock.c"
54
55config SERIRQ_CONTINUOUS_MODE
56 bool
57 default n
58 help
59 If you set this option to y, the serial IRQ machine will be
60 operated in continuous mode.
61
Patrick Georgi3cc151e2013-06-13 15:07:02 +020062config ME_BIN_PATH
63 string "Path to management engine firmware"
64 default "3rdparty/mainboard/$(MAINBOARDDIR)/me.bin"
65
66config IFD_BIN_PATH
67 string "Path to intel firmware descriptor"
68 default "3rdparty/mainboard/$(MAINBOARDDIR)/descriptor.bin"
69
Aaron Durbin76c37002012-10-30 09:03:43 -050070endif