1## SPDX-License-Identifier: GPL-2.0-only 2 3if BOARD_INTEL_LEAFHILL 4 5config BOARD_SPECIFIC_OPTIONS 6 def_bool y 7 select SOC_INTEL_APOLLOLAKE 8 select BOARD_ROMSIZE_KB_16384 9 select HAVE_ACPI_TABLES 10 select INTEL_LPSS_UART_FOR_CONSOLE 11 12config MAINBOARD_DIR 13 default "intel/leafhill" 14 15config MAINBOARD_PART_NUMBER 16 default "Leafhill" 17 18config FMDFILE 19 default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/leafhill.\$(CONFIG_COREBOOT_ROMSIZE_KB).fmd" 20 21config UART_FOR_CONSOLE 22 default 2 23 24config NEED_IFWI 25 # this must be set to y 26 bool "Use IFWI stitching" 27 default n 28 29config IFWI_FMAP_NAME 30 string "section in .fmd file to place ifwi blob" 31 depends on NEED_IFWI 32 default "IFWI" 33 34config IFWI_FILE_NAME 35 string "path to image coming from FIT tool" 36 depends on NEED_IFWI 37 default "" 38 39config IFD_BIN_PATH 40 string "path to descriptor.bin" 41 depends on NEED_IFWI 42 default "" 43 44config HAVE_IFD_BIN 45 bool 46 depends on NEED_IFWI 47 default y 48 49endif # BOARD_INTEL_LEAFHILL 50