blob: be3ef5e5d8f8a8d5d9c439decc0d14c63e6261fa [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Simon Glass0b36ecd2014-11-12 22:42:07 -07002#
3# From Coreboot src/northbridge/intel/sandybridge/Kconfig
4#
5# Copyright (C) 2010 Google Inc.
6#
Simon Glass0b36ecd2014-11-12 22:42:07 -07007
Simon Glass0b36ecd2014-11-12 22:42:07 -07008config NORTHBRIDGE_INTEL_IVYBRIDGE
9 bool
Simon Glassd4e90742016-03-11 22:07:08 -070010 select CACHE_MRC_BIN if HAVE_MRC
Bin Mengd3935ff2017-07-30 06:23:10 -070011 imply HAVE_INTEL_ME
Bin Meng1949a9a2017-07-30 06:23:14 -070012 imply ENABLE_MRC_CACHE
Bin Meng73f5bc12017-07-30 19:24:02 -070013 imply AHCI_PCI
Bin Meng31dd76c2017-07-30 06:23:18 -070014 imply ICH_SPI
Bin Mengce9d1b02017-07-30 06:23:28 -070015 imply INTEL_ICH6_GPIO
Bin Mengc253c3f2018-06-10 06:25:01 -070016 imply PINCTRL_ICH6
Bin Meng31dd76c2017-07-30 06:23:18 -070017 imply SCSI
Tuomas Tynkkynenedf9f622017-12-08 15:36:19 +020018 imply SCSI_AHCI
Bin Meng31dd76c2017-07-30 06:23:18 -070019 imply SPI_FLASH
Bin Meng5b5d1732017-07-30 06:23:27 -070020 imply USB
21 imply USB_EHCI_HCD
Bin Menge1c6d2c2018-06-03 19:04:15 -070022 imply USB_XHCI_HCD
Bin Meng31dd76c2017-07-30 06:23:18 -070023 imply VIDEO_VESA
Simon Glasse7ceeef2019-02-16 20:24:57 -070024 imply SOUND_IVYBRIDGE
Simon Glass0b36ecd2014-11-12 22:42:07 -070025
Simon Glass0b36ecd2014-11-12 22:42:07 -070026if NORTHBRIDGE_INTEL_IVYBRIDGE
27
Simon Glass0b36ecd2014-11-12 22:42:07 -070028config DCACHE_RAM_BASE
Simon Glass0b36ecd2014-11-12 22:42:07 -070029 default 0xff7e0000
30
31config DCACHE_RAM_SIZE
Simon Glass0b36ecd2014-11-12 22:42:07 -070032 default 0x20000
33
Simon Glass0b36ecd2014-11-12 22:42:07 -070034config DCACHE_RAM_MRC_VAR_SIZE
Simon Glass0b36ecd2014-11-12 22:42:07 -070035 default 0x4000
Simon Glass0b36ecd2014-11-12 22:42:07 -070036
Simon Glass0b36ecd2014-11-12 22:42:07 -070037config CPU_SPECIFIC_OPTIONS
38 def_bool y
39 select SMM_TSEG
Simon Glass268eefd2014-11-12 22:42:28 -070040 select X86_RAMTEST
Simon Glass0b36ecd2014-11-12 22:42:07 -070041
42config SMM_TSEG_SIZE
43 hex
44 default 0x800000
45
46config ENABLE_VMX
47 bool "Enable VMX for virtualization"
Simon Glass0b36ecd2014-11-12 22:42:07 -070048 help
49 Virtual Machine Extensions are provided in many x86 CPUs. These
50 provide various facilities for allowing a host OS to provide an
51 environment where potentially several guest OSes have only
52 limited access to the underlying hardware. This is achieved
53 without resorting to software trapping and/or instruction set
54 emulation (which would be very slow).
55
56 Intel's implementation of this is called VT-x. This option enables
57 VT-x this so that the OS that is booted by U-Boot can make use of
58 these facilities. If this option is not enabled, then the host OS
59 will be unable to support virtualisation, or it will run very
60 slowly.
61
Bin Meng5dbe3042016-02-17 00:16:21 -080062config FSP_ADDR
63 hex
64 default 0xfff80000
65
Bin Meng5afa22a2016-02-17 00:16:25 -080066config FSP_BROKEN_HOB
67 bool
68 default y
69
Simon Glass0b36ecd2014-11-12 22:42:07 -070070endif