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 |
Bin Meng | 1949a9a | 2017-07-30 06:23:14 -0700 | [diff] [blame] | 12 | imply ENABLE_MRC_CACHE |
Bin Meng | 73f5bc1 | 2017-07-30 19:24:02 -0700 | [diff] [blame] | 13 | imply AHCI_PCI |
Bin Meng | 31dd76c | 2017-07-30 06:23:18 -0700 | [diff] [blame] | 14 | imply ICH_SPI |
Bin Meng | ce9d1b0 | 2017-07-30 06:23:28 -0700 | [diff] [blame] | 15 | imply INTEL_ICH6_GPIO |
Bin Meng | 31dd76c | 2017-07-30 06:23:18 -0700 | [diff] [blame] | 16 | imply SCSI |
Tuomas Tynkkynen | edf9f62 | 2017-12-08 15:36:19 +0200 | [diff] [blame^] | 17 | imply SCSI_AHCI |
Bin Meng | 31dd76c | 2017-07-30 06:23:18 -0700 | [diff] [blame] | 18 | imply SPI_FLASH |
Bin Meng | 5b5d173 | 2017-07-30 06:23:27 -0700 | [diff] [blame] | 19 | imply USB |
| 20 | imply USB_EHCI_HCD |
Bin Meng | 31dd76c | 2017-07-30 06:23:18 -0700 | [diff] [blame] | 21 | imply VIDEO_VESA |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 22 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 23 | if NORTHBRIDGE_INTEL_IVYBRIDGE |
| 24 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 25 | config DCACHE_RAM_BASE |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 26 | default 0xff7e0000 |
| 27 | |
| 28 | config DCACHE_RAM_SIZE |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 29 | default 0x20000 |
| 30 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 31 | config DCACHE_RAM_MRC_VAR_SIZE |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 32 | default 0x4000 |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 33 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 34 | config CPU_SPECIFIC_OPTIONS |
| 35 | def_bool y |
| 36 | select SMM_TSEG |
Simon Glass | 268eefd | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 37 | select X86_RAMTEST |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 38 | |
| 39 | config SMM_TSEG_SIZE |
| 40 | hex |
| 41 | default 0x800000 |
| 42 | |
| 43 | config ENABLE_VMX |
| 44 | bool "Enable VMX for virtualization" |
| 45 | default n |
| 46 | help |
| 47 | Virtual Machine Extensions are provided in many x86 CPUs. These |
| 48 | provide various facilities for allowing a host OS to provide an |
| 49 | environment where potentially several guest OSes have only |
| 50 | limited access to the underlying hardware. This is achieved |
| 51 | without resorting to software trapping and/or instruction set |
| 52 | emulation (which would be very slow). |
| 53 | |
| 54 | Intel's implementation of this is called VT-x. This option enables |
| 55 | VT-x this so that the OS that is booted by U-Boot can make use of |
| 56 | these facilities. If this option is not enabled, then the host OS |
| 57 | will be unable to support virtualisation, or it will run very |
| 58 | slowly. |
| 59 | |
Bin Meng | 5dbe304 | 2016-02-17 00:16:21 -0800 | [diff] [blame] | 60 | config FSP_ADDR |
| 61 | hex |
| 62 | default 0xfff80000 |
| 63 | |
| 64 | config FSP_USE_UPD |
| 65 | bool |
| 66 | default n |
| 67 | |
Bin Meng | 5afa22a | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 68 | config FSP_BROKEN_HOB |
| 69 | bool |
| 70 | default y |
| 71 | |
Simon Glass | 0b36ecd | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 72 | endif |