blob: 7c868554c661baf36adec36a0ce50d69a92159ef [file] [log] [blame]
Martin Roth41a89972024-02-16 10:57:31 -07001## SPDX-License-Identifier: GPL-2.0-only
2
Brenton Dong35f03d92017-02-06 16:07:27 -07003if BOARD_INTEL_MINNOW3
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
Nico Hubera96e66a2018-11-11 02:51:14 +010010 select INTEL_LPSS_UART_FOR_CONSOLE
Brenton Dong35f03d92017-02-06 16:07:27 -070011
12config MAINBOARD_DIR
Patrick Georgi0bb83462019-11-22 20:58:58 +010013 default "intel/minnow3"
Brenton Dong35f03d92017-02-06 16:07:27 -070014
15config MAINBOARD_PART_NUMBER
Brenton Dong35f03d92017-02-06 16:07:27 -070016 default "Minnow3"
17
Brenton Dong44ff10e2017-03-23 16:23:47 -070018config FMDFILE
Patrick Georgib8fba862020-06-17 21:06:53 +020019 default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/minnow3.fmd"
Brenton Dong44ff10e2017-03-23 16:23:47 -070020
21config UART_FOR_CONSOLE
Brenton Dong44ff10e2017-03-23 16:23:47 -070022 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 Dong35f03d92017-02-06 16:07:27 -070049endif # BOARD_INTEL_MINNOW3