summaryrefslogtreecommitdiffstats
path: root/src/mainboard/intel/coffeelake_rvp/Kconfig
diff options
context:
space:
mode:
authorMaulik V Vaghela <maulik.v.vaghela@intel.com>2018-08-07 14:26:04 +0530
committerPatrick Georgi <pgeorgi@google.com>2018-08-14 09:56:01 +0000
commitd64b9408019754f0ae435b6a6990ac77df9fc2d1 (patch)
tree2865205ccb7736829f0c6696967a74691ded7a68 /src/mainboard/intel/coffeelake_rvp/Kconfig
parentdfc9917080a9175fef2c40288c586ff9dd5861f3 (diff)
downloadcoreboot-d64b9408019754f0ae435b6a6990ac77df9fc2d1.tar.gz
coreboot-d64b9408019754f0ae435b6a6990ac77df9fc2d1.tar.bz2
coreboot-d64b9408019754f0ae435b6a6990ac77df9fc2d1.zip
mb/intel/coffeelake: Enable 32MB rom compilation for Coffeelake U
Coffeelake U has 32MB flash chip support. Adding fmd file and enabling CFL U board's Kconfig to output 32MB rom file. Change-Id: I21431b7ac813781b12b95f80c6f8960a78caf4bc Signed-off-by: Maulik V Vaghela <maulik.v.vaghela@intel.com> Reviewed-on: https://review.coreboot.org/27905 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Naresh Solanki <naresh.solanki@intel.com>
Diffstat (limited to 'src/mainboard/intel/coffeelake_rvp/Kconfig')
-rw-r--r--src/mainboard/intel/coffeelake_rvp/Kconfig9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mainboard/intel/coffeelake_rvp/Kconfig b/src/mainboard/intel/coffeelake_rvp/Kconfig
index a8a99d6ebd93..fe0e9dbe01be 100644
--- a/src/mainboard/intel/coffeelake_rvp/Kconfig
+++ b/src/mainboard/intel/coffeelake_rvp/Kconfig
@@ -2,7 +2,8 @@ if BOARD_INTEL_COFFEELAKE_RVPU || BOARD_INTEL_COFFEELAKE_RVP11
config BOARD_SPECIFIC_OPTIONS
def_bool y
- select BOARD_ROMSIZE_KB_16384
+ select BOARD_ROMSIZE_KB_16384 if !BOARD_INTEL_COFFEELAKE_RVPU
+ select BOARD_ROMSIZE_KB_32768 if BOARD_INTEL_COFFEELAKE_RVPU
select GENERIC_SPD_BIN
select HAVE_ACPI_RESUME
select HAVE_ACPI_TABLES
@@ -41,6 +42,12 @@ config DEVICETREE
string
default "variants/$(CONFIG_VARIANT_DIR)/devicetree.cb"
+config FMDFILE
+ string
+ depends on VBOOT
+ default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" if BOARD_ROMSIZE_KB_16384
+ default "src/mainboard/$(CONFIG_MAINBOARD_DIR)/chromeos_32MB.fmd" if BOARD_ROMSIZE_KB_32768
+
config INCLUDE_SND_MAX98357_DA7219_NHLT
bool "Include blobs for audio with MAX98357_DA7219"
select DRIVERS_GENERIC_MAX98357A