blob: a88a9a8bc27fc2be9444d823b360331ef69b054d [file] [log] [blame]
Angel Ponsf4a99552020-04-02 20:12:40 +02001## SPDX-License-Identifier: GPL-2.0-only
Aaron Durbin76c37002012-10-30 09:03:43 -05002
3config SOUTHBRIDGE_INTEL_LYNXPOINT
4 bool
5
6if SOUTHBRIDGE_INTEL_LYNXPOINT
7
8config SOUTH_BRIDGE_OPTIONS # dummy
9 def_bool y
Aaron Durbinda5f5092016-07-13 23:23:16 -050010 select ACPI_INTEL_HARDWARE_SLEEP_VALUES
Angel Pons61dd8362020-12-05 18:02:32 +010011 select AZALIA_PLUGIN_SUPPORT
Arthur Heymans16fe7902017-04-12 17:01:31 +020012 select SOUTHBRIDGE_INTEL_COMMON_SMBUS
Angel Pons64285772020-06-01 20:06:03 +020013 select SOUTHBRIDGE_INTEL_COMMON_EARLY_SMBUS
Arthur Heymans47a66032019-10-25 23:43:14 +020014 select SOUTHBRIDGE_INTEL_COMMON_SPI_ICH9
Tristan Corrick167a5122018-10-31 02:28:32 +130015 select SOUTHBRIDGE_INTEL_COMMON_ACPI_MADT
Tristan Corrick63626b12018-11-30 22:53:50 +130016 select SOUTHBRIDGE_INTEL_COMMON_FINALIZE
Patrick Rudolpha3caa2d2019-03-24 14:59:45 +010017 select SOUTHBRIDGE_INTEL_COMMON_PMCLIB
Arthur Heymansb8bda112019-06-04 13:57:47 +020018 select SOUTHBRIDGE_INTEL_COMMON_PMBASE
Arthur Heymans074730c2019-06-04 14:05:53 +020019 select SOUTHBRIDGE_INTEL_COMMON_RTC
Arthur Heymans23a6c792019-10-13 22:36:04 +020020 select SOUTHBRIDGE_INTEL_COMMON_RESET
Aaron Durbin76c37002012-10-30 09:03:43 -050021 select IOAPIC
Tristan Corrick8a347952018-12-02 03:23:11 +130022 select HAVE_SMI_HANDLER
Kyösti Mälkki0306b502013-08-13 09:10:31 +030023 select HAVE_USBDEBUG_OPTIONS
Aaron Durbin76c37002012-10-30 09:03:43 -050024 select USE_WATCHDOG_ON_BOOT
25 select PCIEXP_ASPM
26 select PCIEXP_COMMON_CLOCK
Stefan Tauneref8b9572018-09-06 00:34:28 +020027 select INTEL_DESCRIPTOR_MODE_CAPABLE
Angel Pons12d48cd2020-10-03 12:22:04 +020028 select HAVE_EM100PRO_SPI_CONSOLE_SUPPORT
Aaron Durbin16246ea2016-08-05 21:23:37 -050029 select RTC
Patrick Rudolph273a8dc2016-02-06 18:07:59 +010030 select SOUTHBRIDGE_INTEL_COMMON_GPIO if !INTEL_LYNXPOINT_LP
Tristan Corrickf3127d42018-10-31 02:25:54 +130031 select SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
Bill XIEd533b162017-08-22 16:26:22 +080032 select HAVE_INTEL_CHIPSET_LOCKDOWN
Nico Huber9faae2b2018-11-14 00:00:35 +010033 select HAVE_POWER_STATE_AFTER_FAILURE
34 select HAVE_POWER_STATE_PREVIOUS_AFTER_FAILURE
Elyes HAOUAS551a7592019-05-01 16:56:36 +020035 select SOUTHBRIDGE_INTEL_COMMON_WATCHDOG
Arthur Heymans3457df12019-11-16 10:04:41 +010036 select SOUTHBRIDGE_INTEL_COMMON_USB_DEBUG
Aaron Durbin76c37002012-10-30 09:03:43 -050037
Duncan Lauriefb9928f2012-12-17 11:11:26 -080038config INTEL_LYNXPOINT_LP
39 bool
40 default n
41 help
42 Set this option to y for Lynxpont LP (Haswell ULT).
43
Aaron Durbin76c37002012-10-30 09:03:43 -050044config EHCI_BAR
45 hex
Kyösti Mälkki0306b502013-08-13 09:10:31 +030046 default 0xe8000000
Aaron Durbin76c37002012-10-30 09:03:43 -050047
Aaron Durbin76c37002012-10-30 09:03:43 -050048config SERIRQ_CONTINUOUS_MODE
49 bool
50 default n
51 help
52 If you set this option to y, the serial IRQ machine will be
53 operated in continuous mode.
54
Angel Pons2d35cf82020-10-29 19:28:44 +010055config HPET_MIN_TICKS
56 hex
57 default 0x80
58
Duncan Laurie911cedf2013-07-30 16:05:55 -070059config FINALIZE_USB_ROUTE_XHCI
60 bool "Route all ports to XHCI controller in finalize step"
61 default y
62 help
63 If you set this option to y, the USB ports will be routed
64 to the XHCI controller during the finalize SMM callback.
65
Matt DeVillier7f633532020-10-07 13:11:58 -050066config PCIEXP_AER
67 bool
68 default y
69
Aaron Durbin76c37002012-10-30 09:03:43 -050070endif