## ## This file is part of the coreboot project. ## ## Copyright (C) 2014 Sage Electronic Engineering, LLC. ## Copyright (C) 2018 Eltan B.V. ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; version 2 of the License. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## config PLATFORM_USES_FSP1_1 bool select UEFI_2_4_BINDING select INTEL_GMA_ADD_VBT if RUN_FSP_GOP help Does the code require the Intel Firmware Support Package? if PLATFORM_USES_FSP1_1 comment "Intel FSP 1.1" config HAVE_FSP_BIN bool "Should the Intel FSP binary be added to the flash image" help Select this option to add an Intel FSP binary to the resulting coreboot image. Note: Without this binary, coreboot builds relying on the FSP will not boot config CPU_MICROCODE_CBFS_LEN hex "Microcode update region length in bytes" default 0x0 help The length in bytes of the microcode update region. config CPU_MICROCODE_CBFS_LOC hex "Microcode update base address in CBFS" default 0x0 help The location (base address) in CBFS that contains the microcode update binary. config FSP_FILE string "Intel FSP binary path and filename" help The path and filename of the Intel FSP binary for this platform. config FSP_LOC hex "Intel FSP Binary location in CBFS" default 0xffee0000 help The location in CBFS that the FSP is located. This must match the value that is set in the FSP binary. If the FSP needs to be moved, rebase the FSP with Intel's BCT (tool). config DISPLAY_HOBS bool "Display hand-off-blocks (HOBs)" default n config DISPLAY_VBT bool "Display Video BIOS Table (VBT)" default n config DISPLAY_FSP_ENTRY_POINTS bool "Display FSP entry points" default n config DISPLAY_UPD_DATA bool "Display UPD data" default n help Display the user specified product data prior to memory initialization. config USE_GENERIC_FSP_CAR_INC bool default n help The chipset can select this to use a generic cache_as_ram.inc file that should be good for all FSP based platforms. config CHECKLIST_DATA_FILE_LOCATION string default "src/vendorcode/intel/fsp/fsp1_1/checklist" config RESET_ON_INVALID_RAMSTAGE_CACHE bool "Reset the system on S3 wake when ramstage cache invalid." default n config SKIP_FSP_CAR def_bool n help Selected by platforms that implement their own CAR setup. endif #PLATFORM_USES_FSP1_1