Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 1 | # |
| 2 | # From Coreboot src/northbridge/intel/sandybridge/Kconfig |
| 3 | # |
| 4 | # Copyright (C) 2010 Google Inc. |
| 5 | # |
| 6 | # SPDX-License-Identifier: GPL-2.0 |
| 7 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 8 | config NORTHBRIDGE_INTEL_IVYBRIDGE |
| 9 | bool |
Simon Glass | d4e9074 | 2016-03-11 22:07:08 -0700 | [diff] [blame] | 10 | select CACHE_MRC_BIN if HAVE_MRC |
Bin Meng | d3935ff | 2017-07-30 06:23:10 -0700 | [diff] [blame^] | 11 | imply HAVE_INTEL_ME |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 12 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 13 | if NORTHBRIDGE_INTEL_IVYBRIDGE |
| 14 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 15 | config DCACHE_RAM_BASE |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 16 | default 0xff7e0000 |
| 17 | |
| 18 | config DCACHE_RAM_SIZE |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 19 | default 0x20000 |
| 20 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 21 | config DCACHE_RAM_MRC_VAR_SIZE |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 22 | default 0x4000 |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 23 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 24 | config CPU_SPECIFIC_OPTIONS |
| 25 | def_bool y |
| 26 | select SMM_TSEG |
Simon Glass | 268eefd | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 27 | select X86_RAMTEST |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 28 | |
| 29 | config SMM_TSEG_SIZE |
| 30 | hex |
| 31 | default 0x800000 |
| 32 | |
| 33 | config ENABLE_VMX |
| 34 | bool "Enable VMX for virtualization" |
| 35 | default n |
| 36 | help |
| 37 | Virtual Machine Extensions are provided in many x86 CPUs. These |
| 38 | provide various facilities for allowing a host OS to provide an |
| 39 | environment where potentially several guest OSes have only |
| 40 | limited access to the underlying hardware. This is achieved |
| 41 | without resorting to software trapping and/or instruction set |
| 42 | emulation (which would be very slow). |
| 43 | |
| 44 | Intel's implementation of this is called VT-x. This option enables |
| 45 | VT-x this so that the OS that is booted by U-Boot can make use of |
| 46 | these facilities. If this option is not enabled, then the host OS |
| 47 | will be unable to support virtualisation, or it will run very |
| 48 | slowly. |
| 49 | |
Bin Meng | 5dbe304 | 2016-02-17 00:16:21 -0800 | [diff] [blame] | 50 | config FSP_ADDR |
| 51 | hex |
| 52 | default 0xfff80000 |
| 53 | |
| 54 | config FSP_USE_UPD |
| 55 | bool |
| 56 | default n |
| 57 | |
Bin Meng | 5afa22a | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 58 | config FSP_BROKEN_HOB |
| 59 | bool |
| 60 | default y |
| 61 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 62 | endif |