blob: d74a294952b94fa80b095936d4b19e06e68c37d4 [file] [log] [blame]
Frans Hendriks43b6e2e2019-06-04 13:53:05 +02001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2018-2019 Eltan B.V.
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15
16if BOARD_FACEBOOK_FBG1701
17
18config BOARD_SPECIFIC_OPTIONS
19 def_bool y
20 select BOARD_ROMSIZE_KB_8192
21 select HAVE_ACPI_TABLES
22 select HAVE_OPTION_TABLE
23 select MAINBOARD_HAS_LPC_TPM
24 select MAINBOARD_HAS_TPM2
25 select SOC_INTEL_BRASWELL
Frans Hendriksd073a0b2019-08-01 14:25:11 +020026 select SOC_INTEL_COMMON_BLOCK_HDA_VERB
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020027 select PCIEXP_L1_SUB_STATE
28 select HAVE_FSP_BIN
29 select CACHE_MRC_SETTINGS
30 select DISABLE_HPET
Frans Hendriks6a27e762019-07-26 08:46:03 +020031 select INTEL_GMA_HAVE_VBT
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020032 select GENERIC_SPD_BIN
Arthur Heymanscbe53572019-10-10 16:41:57 +020033 select USE_VENDORCODE_ELTAN
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020034
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020035config ONBOARD_SAMSUNG_MEM
Frans Hendriksb3d597b2019-10-02 09:27:56 +020036 bool "Onboard memory manufacturer Samsung"
37 default n
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020038 help
39 Samsung K4B8G1646D memory
40
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020041config MAINBOARD_DIR
42 string
43 default facebook/fbg1701
44
45config MAINBOARD_PART_NUMBER
46 string
47 default "FBG-1701"
48
49config CBFS_SIZE
50 hex
Frans Hendriks3b426832019-06-24 11:30:39 +020051 default 0x00600000
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020052
53config CPU_MICROCODE_CBFS_LEN
54 hex
55 default 0x10C00
56 help
57 This should be updated when the microcode patch changes.
58
59config CPU_MICROCODE_CBFS_LOC
60 hex
61 default 0xFFFE9400
62
63config MRC_SETTINGS_CACHE_SIZE
64 hex
65 default 0x08000
66
67config FSP_LOC
68 hex
69 default 0xfff9c000
70
71config FSP1_1_DISPLAY_LOGO
72 bool
73 default n
74
Frans Hendriks744c70d2019-06-26 14:57:35 +020075config VENDORCODE_ELTAN_OEM_MANIFEST_LOC
76 hex "OEM Manifest working dflt"
77 default 0xFFFE9000
78
Frans Hendriks43b6e2e2019-06-04 13:53:05 +020079config SPI_FLASH_INCLUDE_ALL_DRIVERS
80 bool
81 default n
82
83config SPI_FLASH_WINBOND
84 bool
85 default y
86
87config TPM_INIT
88 bool "TPM Setup in RAMSTAGE"
89 default n
90
91config C_ENV_BOOTBLOCK_SIZE
92 hex "C Bootblock Size"
93 default 0x4000
94
Frans Hendriks744c70d2019-06-26 14:57:35 +020095config VENDORCODE_ELTAN_VBOOT_SIGNED_MANIFEST
96 bool
97 default y
98
99config VENDORCODE_ELTAN_VBOOT_MANIFEST
100 string
101 default "mainboard/facebook/fbg1701/manifest.h"
102
103config VENDORCODE_ELTAN_VBOOT_KEY_LOCATION
104 hex "Key Location working dflt"
105 default 0xFFFF9C00
106
Wim Vervoorn34bc60b2019-10-31 10:31:08 +0100107config DRIVERS_INTEL_WIFI
108 bool
109 default n
110
Frans Hendriks43b6e2e2019-06-04 13:53:05 +0200111endif # BOARD_FACEBOOK_FBG1701