blob: 0f75537247db059881cfe38193c38ae752ddf4e2 [file] [log] [blame]
Kyösti Mälkki71216c92013-07-28 23:39:37 +03001config SOUTHBRIDGE_INTEL_COMMON
2 def_bool n
Kyösti Mälkkib5d998b2017-08-20 21:36:08 +03003
Patrick Rudolph59de6c92015-12-26 08:33:16 +01004config SOUTHBRIDGE_INTEL_COMMON_GPIO
5 def_bool n
Kyösti Mälkkib5d998b2017-08-20 21:36:08 +03006
Arthur Heymans16fe7902017-04-12 17:01:31 +02007config SOUTHBRIDGE_INTEL_COMMON_SMBUS
8 def_bool n
Kyösti Mälkkib5d998b2017-08-20 21:36:08 +03009 select HAVE_DEBUG_SMBUS
10
Arthur Heymansbddef0d2017-09-25 12:21:07 +020011config SOUTHBRIDGE_INTEL_COMMON_SPI
12 def_bool n
13 select SPI_FLASH
14
Tobias Diedrich9d8be5a2017-12-13 23:25:32 +010015config SOUTHBRIDGE_INTEL_COMMON_PIRQ_ACPI_GEN
16 def_bool n
17
18config SOUTHBRIDGE_INTEL_COMMON_RCBA_PIRQ
19 def_bool n
20 select SOUTHBRIDGE_INTEL_COMMON_PIRQ_ACPI_GEN
21
Bill XIEd533b162017-08-22 16:26:22 +080022config HAVE_INTEL_CHIPSET_LOCKDOWN
23 def_bool n
24
Arthur Heymansa0508172018-01-25 11:30:22 +010025config SOUTHBRIDGE_INTEL_COMMON_SMM
26 def_bool n
27
Stefan Tauneref8b9572018-09-06 00:34:28 +020028config INTEL_DESCRIPTOR_MODE_CAPABLE
29 def_bool n
30 help
31 This config simply states that the platform is *capable* of running in
32 descriptor mode (when the descriptor in flash is valid).
33
Angel Ponsa52016c2018-09-11 13:49:45 +020034config INTEL_DESCRIPTOR_MODE_REQUIRED
35 def_bool y if INTEL_DESCRIPTOR_MODE_CAPABLE
36 help
37 This config states descriptor mode is *required* for the platform to
38 function properly, or to function at all.
39
Bill XIEd533b162017-08-22 16:26:22 +080040config INTEL_CHIPSET_LOCKDOWN
41 depends on HAVE_INTEL_CHIPSET_LOCKDOWN && HAVE_SMI_HANDLER && !CHROMEOS
42 #ChromeOS's payload seems to handle finalization on its on.
43 bool "Lock down chipset in coreboot"
44 default y
45 help
46 Some registers within host bridge on particular chipsets should be
47 locked down on each normal boot path (done by either coreboot or payload)
48 and S3 resume (always done by coreboot). Select this to let coreboot
49 to do this on normal boot path.