blob: 260de7c2fafd768e2165cc4242dabc619885fa72 [file] [log] [blame]
Martin Roth41a89972024-02-16 10:57:31 -07001## SPDX-License-Identifier: GPL-2.0-only
2
Brenton Dong5f1f0532017-01-04 15:12:27 -07003if BOARD_INTEL_LEAFHILL
4
Brenton Dongdcc0aa82017-01-04 16:39:43 -07005config BOARD_SPECIFIC_OPTIONS
6 def_bool y
7 select SOC_INTEL_APOLLOLAKE
8 select BOARD_ROMSIZE_KB_16384
9 select HAVE_ACPI_TABLES
Nico Hubera96e66a2018-11-11 02:51:14 +010010 select INTEL_LPSS_UART_FOR_CONSOLE
Brenton Dong5f1f0532017-01-04 15:12:27 -070011
12config MAINBOARD_DIR
Patrick Georgi0bb83462019-11-22 20:58:58 +010013 default "intel/leafhill"
Brenton Dong5f1f0532017-01-04 15:12:27 -070014
Brenton Dong5f1f0532017-01-04 15:12:27 -070015config MAINBOARD_PART_NUMBER
Brenton Dongdcc0aa82017-01-04 16:39:43 -070016 default "Leafhill"
Brenton Dong5f1f0532017-01-04 15:12:27 -070017
Andrey Petrov6a489232017-02-23 14:10:11 -080018config FMDFILE
Patrick Georgib8fba862020-06-17 21:06:53 +020019 default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/leafhill.\$(CONFIG_COREBOOT_ROMSIZE_KB).fmd"
Andrey Petrov6a489232017-02-23 14:10:11 -080020
21config UART_FOR_CONSOLE
Andrey Petrov6a489232017-02-23 14:10:11 -080022 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
Brenton Dong5f1f0532017-01-04 15:12:27 -070049endif # BOARD_INTEL_LEAFHILL