Use of CAR_GLOBAL is not safe after CAR is torn down, unless the board properly implements EARLY_CBMEM_INIT. Flag vulnerable boards that only do cbmem_recovery() in romstage on S3 resume and implementation with Intel FSP that invalidates cache before we have a chance to copy the contents. Change-Id: Iecd10dee9b73ab3f1f66826950fa0945675ff39f Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/5419 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@google.com>
77 lines
1.2 KiB
Plaintext
77 lines
1.2 KiB
Plaintext
if BOARD_INTEL_COUGAR_CANYON2
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select ARCH_X86
|
|
select CPU_INTEL_SOCKET_RPGA989
|
|
select NORTHBRIDGE_INTEL_FSP_IVYBRIDGE
|
|
select SOUTHBRIDGE_INTEL_FSP_BD82X6X
|
|
select BOARD_ROMSIZE_KB_8192
|
|
select HAVE_ACPI_TABLES
|
|
select HAVE_OPTION_TABLE
|
|
select MMCONF_SUPPORT
|
|
select GFXUMA
|
|
select SUPERIO_SMSC_SIO1007
|
|
select ENABLE_VMX
|
|
select EARLY_CBMEM_INIT
|
|
select BROKEN_CAR_MIGRATE
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default intel/cougar_canyon2
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "Cougar Canyon 2"
|
|
|
|
config MMCONF_BASE_ADDRESS
|
|
hex
|
|
default 0xf8000000 # set to match FSP
|
|
|
|
config IRQ_SLOT_COUNT
|
|
int
|
|
default 18
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 16
|
|
|
|
config SIO_PORT
|
|
hex
|
|
default 0x164e
|
|
|
|
config SMBIOS_SYSTEM_ENCLOSURE_TYPE
|
|
hex
|
|
default 0x09 # This is a mobile platform
|
|
|
|
config UDELAY_LAPIC_FIXED_FSB
|
|
int
|
|
default 100
|
|
|
|
config VGA
|
|
bool
|
|
default y
|
|
|
|
config VIRTUAL_ROM_SIZE
|
|
hex
|
|
default 0x1000000
|
|
|
|
if HAVE_FSP_BIN
|
|
|
|
config VGA_BIOS
|
|
bool
|
|
default y
|
|
|
|
config VGA_BIOS_FILE
|
|
string
|
|
default "../intel/mainboard/intel/cougar_canyon2/vbios/snm_2170.dat"
|
|
|
|
config VGA_BIOS_ID
|
|
string
|
|
default "8086,0166"
|
|
|
|
|
|
endif # HAVE_FSP_BIN
|
|
|
|
endif # BOARD_INTEL_COUGAR_CANYON2
|