blob: eec92df1bcf224068187e4d346a7fa75a660e5b0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Simon Glass8ef07572014-11-12 22:42:07 -07002#
3# From Coreboot src/northbridge/intel/sandybridge/Kconfig
4#
5# Copyright (C) 2010 Google Inc.
6#
Simon Glass8ef07572014-11-12 22:42:07 -07007
Simon Glass8ef07572014-11-12 22:42:07 -07008config NORTHBRIDGE_INTEL_IVYBRIDGE
9 bool
Simon Glassf7d35bc2016-03-11 22:07:08 -070010 select CACHE_MRC_BIN if HAVE_MRC
Bin Meng1e452b42017-07-30 06:23:10 -070011 imply HAVE_INTEL_ME
Bin Meng67f99f92017-07-30 06:23:14 -070012 imply ENABLE_MRC_CACHE
Bin Meng24357df2017-07-30 19:24:02 -070013 imply AHCI_PCI
Bin Menga5b21292017-07-30 06:23:18 -070014 imply ICH_SPI
Bin Meng72436892017-07-30 06:23:28 -070015 imply INTEL_ICH6_GPIO
Bin Menga5b21292017-07-30 06:23:18 -070016 imply SCSI
Tuomas Tynkkynen9fd95ef2017-12-08 15:36:19 +020017 imply SCSI_AHCI
Bin Menga5b21292017-07-30 06:23:18 -070018 imply SPI_FLASH
Bin Mengb9342b22017-07-30 06:23:27 -070019 imply USB
20 imply USB_EHCI_HCD
Bin Mengb173b4e2018-06-03 19:04:15 -070021 imply USB_XHCI_HCD
Bin Menga5b21292017-07-30 06:23:18 -070022 imply VIDEO_VESA
Simon Glass8ef07572014-11-12 22:42:07 -070023
Simon Glass8ef07572014-11-12 22:42:07 -070024if NORTHBRIDGE_INTEL_IVYBRIDGE
25
Simon Glass8ef07572014-11-12 22:42:07 -070026config DCACHE_RAM_BASE
Simon Glass8ef07572014-11-12 22:42:07 -070027 default 0xff7e0000
28
29config DCACHE_RAM_SIZE
Simon Glass8ef07572014-11-12 22:42:07 -070030 default 0x20000
31
Simon Glass8ef07572014-11-12 22:42:07 -070032config DCACHE_RAM_MRC_VAR_SIZE
Simon Glass8ef07572014-11-12 22:42:07 -070033 default 0x4000
Simon Glass8ef07572014-11-12 22:42:07 -070034
Simon Glass8ef07572014-11-12 22:42:07 -070035config CPU_SPECIFIC_OPTIONS
36 def_bool y
37 select SMM_TSEG
Simon Glass65dd74a2014-11-12 22:42:28 -070038 select X86_RAMTEST
Simon Glass8ef07572014-11-12 22:42:07 -070039
40config SMM_TSEG_SIZE
41 hex
42 default 0x800000
43
44config ENABLE_VMX
45 bool "Enable VMX for virtualization"
46 default n
47 help
48 Virtual Machine Extensions are provided in many x86 CPUs. These
49 provide various facilities for allowing a host OS to provide an
50 environment where potentially several guest OSes have only
51 limited access to the underlying hardware. This is achieved
52 without resorting to software trapping and/or instruction set
53 emulation (which would be very slow).
54
55 Intel's implementation of this is called VT-x. This option enables
56 VT-x this so that the OS that is booted by U-Boot can make use of
57 these facilities. If this option is not enabled, then the host OS
58 will be unable to support virtualisation, or it will run very
59 slowly.
60
Bin Meng43741392016-02-17 00:16:21 -080061config FSP_ADDR
62 hex
63 default 0xfff80000
64
65config FSP_USE_UPD
66 bool
67 default n
68
Bin Menga2e3b052016-02-17 00:16:25 -080069config FSP_BROKEN_HOB
70 bool
71 default y
72
Simon Glass8ef07572014-11-12 22:42:07 -070073endif