Update the copyright dates in the FSP 2.0 files. Add a copyright to Kconfig. TEST=Build and run on Galileo Gen2 Change-Id: I0ad0c5650bde0e31d01a04bcc7d22a19273fe29b Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/15852 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
#
|
|
# This file is part of the coreboot project.
|
|
#
|
|
# Copyright (C) 2015-2016 Intel Corp.
|
|
#
|
|
# 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_FSP2_0
|
|
bool
|
|
select UEFI_2_4_BINDING
|
|
help
|
|
Include FSP 2.0 wrappers and functionality
|
|
|
|
if PLATFORM_USES_FSP2_0
|
|
|
|
config ADD_FSP_BINARIES
|
|
bool "Add Intel FSP 2.0 binaries to CBFS"
|
|
help
|
|
Add the FSP-M and FSP-S binaries to CBFS. Currently coreboot does not
|
|
use the FSP-T binary and it is not added.
|
|
|
|
config FSP_S_CBFS
|
|
string "Name of FSP-S in CBFS"
|
|
default "fsps.bin"
|
|
|
|
config FSP_M_CBFS
|
|
string "Name of FSP-M in CBFS"
|
|
default "fspm.bin"
|
|
|
|
config FSP_M_FILE
|
|
string "Intel FSP-M (memory init) binary path and filename"
|
|
depends on ADD_FSP_BINARIES
|
|
help
|
|
The path and filename of the Intel FSP-M binary for this platform.
|
|
|
|
config FSP_S_FILE
|
|
string "Intel FSP-S (silicon init) binary path and filename"
|
|
depends on ADD_FSP_BINARIES
|
|
help
|
|
The path and filename of the Intel FSP-S binary for this platform.
|
|
|
|
config FSP_M_XIP
|
|
bool "Is FSP-M XIP"
|
|
default n
|
|
help
|
|
Select this value when FSP-M is execute-in-place.
|
|
|
|
endif
|