blob: 744a31e69dbec874f7604eb165de0212c8dea9e3 [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##
Aaron Durbin76c37002012-10-30 09:03:43 -050015
16config SOUTHBRIDGE_INTEL_LYNXPOINT
17 bool
18
19if SOUTHBRIDGE_INTEL_LYNXPOINT
20
21config SOUTH_BRIDGE_OPTIONS # dummy
22 def_bool y
Kyösti Mälkki71216c92013-07-28 23:39:37 +030023 select SOUTHBRIDGE_INTEL_COMMON
Aaron Durbin76c37002012-10-30 09:03:43 -050024 select IOAPIC
25 select HAVE_HARD_RESET
Kyösti Mälkki0306b502013-08-13 09:10:31 +030026 select HAVE_USBDEBUG_OPTIONS
Aaron Durbin76c37002012-10-30 09:03:43 -050027 select USE_WATCHDOG_ON_BOOT
28 select PCIEXP_ASPM
29 select PCIEXP_COMMON_CLOCK
30 select SPI_FLASH
Martin Roth59aa2b12015-06-20 16:17:12 -060031 select HAVE_INTEL_FIRMWARE
Martin Roth3a543182015-09-28 15:27:24 -060032 select HAVE_SPI_CONSOLE_SUPPORT
Patrick Rudolph273a8dc2016-02-06 18:07:59 +010033 select SOUTHBRIDGE_INTEL_COMMON_GPIO if !INTEL_LYNXPOINT_LP
Aaron Durbin76c37002012-10-30 09:03:43 -050034
Duncan Lauriefb9928f2012-12-17 11:11:26 -080035config INTEL_LYNXPOINT_LP
36 bool
37 default n
38 help
39 Set this option to y for Lynxpont LP (Haswell ULT).
40
Aaron Durbin76c37002012-10-30 09:03:43 -050041config EHCI_BAR
42 hex
Kyösti Mälkki0306b502013-08-13 09:10:31 +030043 default 0xe8000000
Aaron Durbin76c37002012-10-30 09:03:43 -050044
Aaron Durbin76c37002012-10-30 09:03:43 -050045config BOOTBLOCK_SOUTHBRIDGE_INIT
46 string
47 default "southbridge/intel/lynxpoint/bootblock.c"
48
49config SERIRQ_CONTINUOUS_MODE
50 bool
51 default n
52 help
53 If you set this option to y, the serial IRQ machine will be
54 operated in continuous mode.
55
Paul Menzel5218e612014-06-16 09:28:36 +020056config HAVE_IFD_BIN
57 bool
58 default y
59
60config BUILD_WITH_FAKE_IFD
Martin Roth59aa2b12015-06-20 16:17:12 -060061 bool
Paul Menzel5218e612014-06-16 09:28:36 +020062 default y if !HAVE_IFD_BIN
Paul Menzel5218e612014-06-16 09:28:36 +020063
64config IFD_BIN_PATH
Martin Roth59aa2b12015-06-20 16:17:12 -060065 string
Paul Menzel5218e612014-06-16 09:28:36 +020066 depends on !BUILD_WITH_FAKE_IFD
Patrick Georgi26e24cc2015-05-05 22:27:25 +020067 default "3rdparty/blobs/mainboard/$(MAINBOARDDIR)/descriptor.bin"
Paul Menzel5218e612014-06-16 09:28:36 +020068
Paul Menzel0089c242014-06-16 14:59:44 +020069config HAVE_ME_BIN
Martin Roth59aa2b12015-06-20 16:17:12 -060070 bool
Paul Menzel0089c242014-06-16 14:59:44 +020071 default y
Paul Menzel0089c242014-06-16 14:59:44 +020072
Patrick Georgi3cc151e2013-06-13 15:07:02 +020073config ME_BIN_PATH
Martin Roth59aa2b12015-06-20 16:17:12 -060074 string
Paul Menzel0089c242014-06-16 14:59:44 +020075 depends on HAVE_ME_BIN
Patrick Georgi26e24cc2015-05-05 22:27:25 +020076 default "3rdparty/blobs/mainboard/$(MAINBOARDDIR)/me.bin"
Patrick Georgi3cc151e2013-06-13 15:07:02 +020077
Duncan Laurie3d299c42013-07-19 08:48:05 -070078config ME_MBP_CLEAR_LATE
79 bool "Defer wait for ME MBP Cleared"
80 default y
81 help
82 If you set this option to y, the Management Engine driver
83 will defer waiting for the MBP Cleared indicator until the
84 finalize step. This can speed up boot time if the ME takes
85 a long time to indicate this status.
86
Duncan Laurie911cedf2013-07-30 16:05:55 -070087config FINALIZE_USB_ROUTE_XHCI
88 bool "Route all ports to XHCI controller in finalize step"
89 default y
90 help
91 If you set this option to y, the USB ports will be routed
92 to the XHCI controller during the finalize SMM callback.
93
Duncan Laurie5a45b042013-08-22 09:56:42 -070094config LOCK_MANAGEMENT_ENGINE
Martin Roth59aa2b12015-06-20 16:17:12 -060095 bool
Duncan Laurie5a45b042013-08-22 09:56:42 -070096 default n
Duncan Laurie5a45b042013-08-22 09:56:42 -070097
Aaron Durbin76c37002012-10-30 09:03:43 -050098endif