summaryrefslogtreecommitdiffstats
path: root/src/mainboard/intel/leafhill/Kconfig
blob: 260de7c2fafd768e2165cc4242dabc619885fa72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
## SPDX-License-Identifier: GPL-2.0-only

if BOARD_INTEL_LEAFHILL

config BOARD_SPECIFIC_OPTIONS
	def_bool y
	select SOC_INTEL_APOLLOLAKE
	select BOARD_ROMSIZE_KB_16384
	select HAVE_ACPI_TABLES
	select INTEL_LPSS_UART_FOR_CONSOLE

config MAINBOARD_DIR
	default "intel/leafhill"

config MAINBOARD_PART_NUMBER
	default "Leafhill"

config FMDFILE
	default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/leafhill.\$(CONFIG_COREBOOT_ROMSIZE_KB).fmd"

config UART_FOR_CONSOLE
	default 2

config NEED_IFWI
	# this must be set to y
	bool "Use IFWI stitching"
	default n

config IFWI_FMAP_NAME
	string "section in .fmd file to place ifwi blob"
	depends on NEED_IFWI
	default "IFWI"

config IFWI_FILE_NAME
	string "path to image coming from FIT tool"
	depends on NEED_IFWI
	default ""

config IFD_BIN_PATH
	string "path to descriptor.bin"
	depends on NEED_IFWI
	default ""

config HAVE_IFD_BIN
	bool
	depends on NEED_IFWI
	default y

endif # BOARD_INTEL_LEAFHILL