blob: 48a6c9de9189be6c9363440781b97b4686e62c98 [file] [log] [blame]
Patrick Georgic49d7a32020-05-08 22:50:46 +02001## SPDX-License-Identifier: GPL-2.0-only
Daisuke Nojiri742fc8d2014-10-10 10:51:06 -07002
Bill XIEcdf6f3a2019-12-17 15:56:43 +08003ifeq ($(CONFIG_VBOOT_LIB),y)
4
Joel Kitchingec12bd02020-02-04 17:36:49 +08005bootblock-y += vboot_lib.c
6verstage-y += vboot_lib.c
7romstage-y += vboot_lib.c
8ramstage-y += vboot_lib.c
9postcar-y += vboot_lib.c
10
Bill XIEcdf6f3a2019-12-17 15:56:43 +080011vboot-fixup-includes = $(patsubst -I%,-I$(top)/%,\
12 $(patsubst $(src)/%.h,$(top)/$(src)/%.h,\
13 $(filter-out -I$(obj),$(1))))
14
15# call with $1 = stage name to create rules for building the library
16# for the stage and adding it to the stage's set of object files.
17define vboot-for-stage
18VBOOT_LIB_$(1) = $(obj)/external/vboot_reference-$(1)/vboot_fw.a
19VBOOT_CFLAGS_$(1) += $$(call vboot-fixup-includes,$$(CPPFLAGS_$(1)))
20VBOOT_CFLAGS_$(1) += $$(CFLAGS_$(1))
21VBOOT_CFLAGS_$(1) += $$(call vboot-fixup-includes,$$($(1)-c-ccopts))
22VBOOT_CFLAGS_$(1) += -I$(abspath $(obj)) -Wno-missing-prototypes
23VBOOT_CFLAGS_$(1) += -DVBOOT_DEBUG
24
25$$(VBOOT_LIB_$(1)): $(obj)/config.h
26 printf " MAKE $(subst $(obj)/,,$(@))\n"
27 +FIRMWARE_ARCH=$$(ARCHDIR-$$(ARCH-$(1)-y)) \
28 CC="$$(CC_$(1))" \
29 CFLAGS="$$(VBOOT_CFLAGS_$(1))" VBOOT2="y" \
Sam McNallyeded5002020-03-04 16:08:06 +110030 EC_EFS="$(CONFIG_VBOOT_EC_EFS)" \
Karthikeyan Ramasubramanian4f9853a2022-10-27 22:49:40 -060031 X86_SHA_EXT="$(if $(CONFIG_ARCH_$(call toupper,$(1))_X86_32)$(CONFIG_ARCH_$(call toupper,$(1))_X86_64),$\
32 $(CONFIG_VBOOT_X86_SHA256_ACCELERATION))" \
Jeremy Compostellab6dfcb72023-11-27 14:56:29 -080033 VB2_X86_RSA_ACCELERATION="$(if $(CONFIG_ARCH_$(call toupper,$(1))_X86_32)$(CONFIG_ARCH_$(call toupper,$(1))_X86_64),$\
34 $(CONFIG_VBOOT_X86_RSA_ACCELERATION))" \
Yidi Linbd6b81d2023-01-31 15:18:57 +080035 ARMV8_CRYPTO_EXT="$(if $(CONFIG_ARCH_$(call toupper,$(1))_ARMV8_64),$$(CONFIG_VBOOT_ARMV8_CE_SHA256_ACCELERATION))" \
Julius Werner366ceee2024-01-05 10:40:43 -080036 ARM64_RSA_ACCELERATION="$(if $(CONFIG_ARCH_$(call toupper,$(1))_ARM64),$$(CONFIG_VBOOT_ARM64_RSA_ACCELERATION))" \
Bill XIEcdf6f3a2019-12-17 15:56:43 +080037 $(MAKE) -C $(VBOOT_SOURCE) \
38 BUILD=$$(abspath $$(dir $$(VBOOT_LIB_$(1)))) \
39 V=$(V) \
Brian Norris6d301c82023-02-01 16:38:44 -080040 USE_FLASHROM=0 \
Maximilian Brune1d7a9de2022-04-14 14:54:16 +020041 fwlib \
Maximilian Brune5cbf45e2022-12-26 06:37:21 +010042 $(if $(CONFIG_SBOM_VBOOT),$$(abspath $$(dir $$(VBOOT_LIB_$(1))))/vboot_host.pc)
Bill XIEcdf6f3a2019-12-17 15:56:43 +080043
Julius Wernera5954782023-12-06 16:08:06 -080044.PHONY: $$(VBOOT_LIB_$(1))
45
Bill XIEcdf6f3a2019-12-17 15:56:43 +080046$(1)-srcs += $$(VBOOT_LIB_$(1))
47
48endef # vboot-for-stage
49
50$(eval $(call vboot-for-stage,bootblock))
Arthur Heymansa2bc2542021-05-29 08:10:49 +020051ifeq ($(CONFIG_SEPARATE_ROMSTAGE),y)
Bill XIEcdf6f3a2019-12-17 15:56:43 +080052$(eval $(call vboot-for-stage,romstage))
Arthur Heymansa2bc2542021-05-29 08:10:49 +020053endif
Bill XIEcdf6f3a2019-12-17 15:56:43 +080054$(eval $(call vboot-for-stage,ramstage))
55$(eval $(call vboot-for-stage,postcar))
56
57endif # CONFIG_VBOOT_LIB
58
Julius Werner5fc7c282017-03-17 14:29:10 -070059ifeq ($(CONFIG_VBOOT),y)
60
Furquan Shaikh0325dc62016-07-25 13:02:36 -070061bootblock-y += bootmode.c
62romstage-y += bootmode.c
63ramstage-y += bootmode.c
64verstage-y += bootmode.c
65postcar-y += bootmode.c
66
Joel Kitchingd6f71d02019-02-21 12:37:55 +080067verstage-generic-ccopts += -D__VERSTAGE__
Daisuke Nojiri742fc8d2014-10-10 10:51:06 -070068
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070069bootblock-y += vbnv.c
70verstage-y += vbnv.c
71romstage-y += vbnv.c
72ramstage-y += vbnv.c
Jakub Czapiga967a76b2022-08-19 12:25:27 +020073postcar-y += vbnv.c
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070074
Tim Wawrzynczakd6fc5572019-10-25 14:58:15 -060075romstage-$(CONFIG_VBOOT_EARLY_EC_SYNC) += ec_sync.c
76
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070077bootblock-$(CONFIG_VBOOT_VBNV_CMOS) += vbnv_cmos.c
78verstage-$(CONFIG_VBOOT_VBNV_CMOS) += vbnv_cmos.c
79romstage-$(CONFIG_VBOOT_VBNV_CMOS) += vbnv_cmos.c
80ramstage-$(CONFIG_VBOOT_VBNV_CMOS) += vbnv_cmos.c
Jakub Czapiga967a76b2022-08-19 12:25:27 +020081postcar-$(CONFIG_VBOOT_VBNV_CMOS) += vbnv_cmos.c
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070082
83bootblock-$(CONFIG_VBOOT_VBNV_CMOS_BACKUP_TO_FLASH) += vbnv_flash.c
84verstage-$(CONFIG_VBOOT_VBNV_CMOS_BACKUP_TO_FLASH) += vbnv_flash.c
85romstage-$(CONFIG_VBOOT_VBNV_CMOS_BACKUP_TO_FLASH) += vbnv_flash.c
86ramstage-$(CONFIG_VBOOT_VBNV_CMOS_BACKUP_TO_FLASH) += vbnv_flash.c
Jakub Czapiga967a76b2022-08-19 12:25:27 +020087postcar-$(CONFIG_VBOOT_VBNV_CMOS_BACKUP_TO_FLASH) += vbnv_flash.c
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070088
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070089bootblock-$(CONFIG_VBOOT_VBNV_FLASH) += vbnv_flash.c
90verstage-$(CONFIG_VBOOT_VBNV_FLASH) += vbnv_flash.c
91romstage-$(CONFIG_VBOOT_VBNV_FLASH) += vbnv_flash.c
92ramstage-$(CONFIG_VBOOT_VBNV_FLASH) += vbnv_flash.c
Jakub Czapiga967a76b2022-08-19 12:25:27 +020093postcar-$(CONFIG_VBOOT_VBNV_FLASH) += vbnv_flash.c
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070094
Aaron Durbin17200ad2015-05-01 16:48:54 -050095bootblock-y += vboot_loader.c
96romstage-y += vboot_loader.c
97ramstage-y += vboot_loader.c
98verstage-y += vboot_loader.c
Andrey Petrov60c64322016-04-14 14:12:47 -070099postcar-y += vboot_loader.c
Aaron Durbin17200ad2015-05-01 16:48:54 -0500100
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700101bootblock-y += vboot_common.c
102verstage-y += vboot_common.c
103romstage-y += vboot_common.c
104ramstage-y += vboot_common.c
105postcar-y += vboot_common.c
Daisuke Nojiri742fc8d2014-10-10 10:51:06 -0700106
Daisuke Nojiri54af6252014-11-04 12:32:29 -0800107bootblock-y += common.c
Julius Wernere91d1702017-03-20 15:32:15 -0700108verstage-y += vboot_logic.c
Daisuke Nojiri5d302c72015-04-09 08:18:22 -0700109verstage-y += common.c
Martin Roth8a3a3c82020-05-04 10:13:45 -0600110ifeq ($(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK),)
Julius Wernere91d1702017-03-20 15:32:15 -0700111verstage-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += verstage.c
Martin Roth8a3a3c82020-05-04 10:13:45 -0600112endif
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700113ifeq (${CONFIG_VBOOT_MOCK_SECDATA},y)
Julius Wernere91d1702017-03-20 15:32:15 -0700114verstage-y += secdata_mock.c
Julius Wernerf0ebaf22020-04-27 13:57:05 -0700115romstage-y += secdata_mock.c
Sridhar Siricilla89ac87a2020-04-20 18:45:22 +0530116ramstage-y += secdata_mock.c
Daisuke Nojiri5d302c72015-04-09 08:18:22 -0700117else
Julius Wernere91d1702017-03-20 15:32:15 -0700118verstage-y += secdata_tpm.c
Julius Wernerf0ebaf22020-04-27 13:57:05 -0700119romstage-y += secdata_tpm.c
Sridhar Siricilla89ac87a2020-04-20 18:45:22 +0530120ramstage-y += secdata_tpm.c
Sergii Dmytrukefc615e2024-03-21 21:06:49 +0200121
122verstage-$(CONFIG_TPM1) += secdata_tpm1.c
123romstage-$(CONFIG_TPM1) += secdata_tpm1.c
124ramstage-$(CONFIG_TPM1) += secdata_tpm1.c
125
126verstage-$(CONFIG_TPM2) += secdata_tpm2.c
127romstage-$(CONFIG_TPM2) += secdata_tpm2.c
128ramstage-$(CONFIG_TPM2) += secdata_tpm2.c
Daisuke Nojiri5d302c72015-04-09 08:18:22 -0700129endif
Christian Walter0bd84ed2019-07-23 10:26:30 +0200130
Kyösti Mälkkif303b4f2021-05-27 19:33:57 +0300131verstage-$(CONFIG_TPM) += tpm_common.c
Christian Walter0bd84ed2019-07-23 10:26:30 +0200132
Joel Kitchingeb203202019-06-16 17:26:53 +0800133romstage-y += common.c
Daisuke Nojiri742fc8d2014-10-10 10:51:06 -0700134
Aaron Durbin17200ad2015-05-01 16:48:54 -0500135ramstage-y += common.c
Andrey Petrov60c64322016-04-14 14:12:47 -0700136postcar-y += common.c
Aaron Durbin17200ad2015-05-01 16:48:54 -0500137
Shelley Chen9f8ac642020-10-16 12:20:16 -0700138romstage-$(CONFIG_MRC_SAVE_HASH_IN_TPM) += mrc_cache_hash_tpm.c
Shelley Chen1fed53f2020-10-16 12:30:05 -0700139ramstage-$(CONFIG_MRC_SAVE_HASH_IN_TPM) += mrc_cache_hash_tpm.c
Philipp Deppenwiese80961af2018-02-27 22:14:34 +0100140
Matt DeVillier9ce755d2023-01-23 18:31:27 -0600141ramstage-$(CONFIG_SOC_AMD_GFX_CACHE_VBIOS_IN_FMAP) += vbios_cache_hash_tpm.c
142
Jeremy Compostellab6dfcb72023-11-27 14:56:29 -0800143ifeq ($(CONFIG_VBOOT_X86_RSA_ACCELERATION),y)
144CPPFLAGS_common += -DVB2_X86_RSA_ACCELERATION
145endif
146
Julius Werner58c39382017-02-13 17:53:29 -0800147ifeq ($(CONFIG_VBOOT_SEPARATE_VERSTAGE),y)
Furquan Shaikhb038f412016-11-07 23:47:11 -0800148
Werner Zeh3c6d9e12018-11-26 06:54:13 +0100149$(eval $(call vboot-for-stage,verstage))
Furquan Shaikhb038f412016-11-07 23:47:11 -0800150
Martin Roth8a3a3c82020-05-04 10:13:45 -0600151ifeq ($(CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK),)
Julius Werner58c39382017-02-13 17:53:29 -0800152cbfs-files-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += $(CONFIG_CBFS_PREFIX)/verstage
Patrick Georgi1cab0122015-11-26 16:39:23 +0100153$(CONFIG_CBFS_PREFIX)/verstage-file := $(objcbfs)/verstage.elf
154$(CONFIG_CBFS_PREFIX)/verstage-type := stage
Julius Werner09f29212015-09-29 13:51:35 -0700155$(CONFIG_CBFS_PREFIX)/verstage-compression := $(CBFS_PRERAM_COMPRESS_FLAG)
Martin Roth8a3a3c82020-05-04 10:13:45 -0600156endif # CONFIG_VBOOT_STARTS_BEFORE_BOOTBLOCK
Furquan Shaikh94b18a12016-05-04 23:25:16 -0700157
Patrick Georgi1cab0122015-11-26 16:39:23 +0100158ifeq ($(CONFIG_ARCH_VERSTAGE_X86_32)$(CONFIG_ARCH_VERSTAGE_X86_64),y)
Jeremy Compostellab7832de2023-08-30 15:42:09 -0700159$(CONFIG_CBFS_PREFIX)/verstage-options := -a 64
160ifeq ($(CONFIG_NO_XIP_EARLY_STAGES),y)
161$(CONFIG_CBFS_PREFIX)/verstage-options += -S ".car.data"
162else
163$(CONFIG_CBFS_PREFIX)/verstage-options += -S ".car.data,.data"
164endif
Furquan Shaikh94b18a12016-05-04 23:25:16 -0700165
166# If CAR does not support execution of code, verstage on x86 is expected to be
167# xip.
168ifneq ($(CONFIG_NO_XIP_EARLY_STAGES),y)
169$(CONFIG_CBFS_PREFIX)/verstage-options += --xip
170endif
Patrick Georgi1cab0122015-11-26 16:39:23 +0100171
172endif
Patrick Rudolphd9c799c2019-02-19 10:57:16 +0100173$(CONFIG_CBFS_PREFIX)/verstage-options += $(TXTIBB)
Patrick Georgi1cab0122015-11-26 16:39:23 +0100174
Julius Wernere91d1702017-03-20 15:32:15 -0700175else # CONFIG_VBOOT_SEPARATE_VERSTAGE
Aaron Durbind1cf44c2015-05-08 15:58:06 -0500176ifeq ($(CONFIG_VBOOT_STARTS_IN_BOOTBLOCK),y)
Julius Wernere91d1702017-03-20 15:32:15 -0700177postinclude-hooks += $$(eval bootblock-srcs += $$(verstage-srcs))
Aaron Durbin57e37282015-04-28 16:17:25 -0500178else
Arthur Heymansa2bc2542021-05-29 08:10:49 +0200179ifeq ($(CONFIG_SEPARATE_ROMSTAGE),y)
Julius Wernere91d1702017-03-20 15:32:15 -0700180postinclude-hooks += $$(eval romstage-srcs += $$(verstage-srcs))
Arthur Heymansa2bc2542021-05-29 08:10:49 +0200181else
182postinclude-hooks += $$(eval bootblock-srcs += $$(verstage-srcs))
183endif
Patrick Georgiefc6aa02015-04-27 18:13:50 +0200184endif
Julius Werner58c39382017-02-13 17:53:29 -0800185endif # CONFIG_VBOOT_SEPARATE_VERSTAGE
Patrick Georgic8d4abd2016-01-20 15:54:31 +0100186
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200187#RO-Partition is always there!
188VBOOT_PARTITIONS := COREBOOT
189# Check for RW_A partition
190ifeq ($(CONFIG_VBOOT_SLOTS_RW_A),y)
191VBOOT_PARTITIONS += FW_MAIN_A
Wim Vervoorna1c259b2019-11-01 10:47:01 +0100192RW_PARTITIONS := FW_MAIN_A
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200193endif
194# Check for RW_B partition
195ifeq ($(CONFIG_VBOOT_SLOTS_RW_AB),y)
196VBOOT_PARTITIONS += FW_MAIN_B
Wim Vervoorna1c259b2019-11-01 10:47:01 +0100197RW_PARTITIONS += FW_MAIN_B
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200198endif
199
Wim Vervoorna1c259b2019-11-01 10:47:01 +0100200# Return the regions a specific file should be placed in. The files listed below and the ones
Martin Roth63036712020-06-25 17:20:32 -0600201# that are specified in CONFIG_RO_REGION_ONLY, are only specified in the RO region. The files
202# specified in the CONFIG_RW_REGION_ONLY are placed in all RW regions. Files specified
203# in CONFIG_RWA_REGION_ONLY or CONFIG_RWB_REGION_ONLY get placed only in those sections.
Patrick Georgic8d4abd2016-01-20 15:54:31 +0100204# All other files will be installed into RO and RW regions
205# Use $(sort) to cut down on extra spaces that would be translated to commas
206regions-for-file = $(subst $(spc),$(comma),$(sort \
Sridhar Siricilla77025b32020-07-23 23:41:36 +0530207 $(if $(value regions-for-file-$(1)), \
208 $(regions-for-file-$(1)), \
209 $(if $(filter $(if $(filter y,$(CONFIG_VBOOT_STARTS_IN_ROMSTAGE)), \
Martin Roth8a3a3c82020-05-04 10:13:45 -0600210 %/romstage,) \
Arthur Heymans75226bb2022-03-30 20:16:36 +0200211 header_pointer \
212 cbfs_master_header \
Patrick Georgic8d4abd2016-01-20 15:54:31 +0100213 mts \
214 %/verstage \
Patrick Georgieda794d2016-02-05 11:01:24 +0100215 locales \
216 locale_%.bin \
217 font.bin \
218 vbgfx.bin \
Lee Leahy5e347522017-01-04 08:51:52 -0800219 rmu.bin \
Patrick Rudolph9554b262018-06-05 15:12:56 +0200220 cmos_layout.bin \
221 cmos.default \
Arthur Heymanseeacd832021-02-19 17:14:23 +0100222 intel_fit \
223 intel_fit_ts \
Arthur Heymansd6612a42021-05-03 13:29:22 +0200224 fspt.bin \
Arthur Heymanse714fc02023-04-05 14:24:59 +0200225 pagetables \
Martin Rothbbd5ee412017-10-05 13:53:16 -0600226 $(call strip_quotes,$(CONFIG_RO_REGION_ONLY)) \
Wim Vervoorna1c259b2019-11-01 10:47:01 +0100227 ,$(1)),COREBOOT,\
228 $(if $(filter \
Sridhar Siricilla77025b32020-07-23 23:41:36 +0530229 $(call strip_quotes,$(CONFIG_RWA_REGION_ONLY)) \
230 ,$(1)), FW_MAIN_A, \
Martin Roth63036712020-06-25 17:20:32 -0600231 $(if $(filter \
232 $(call strip_quotes,$(CONFIG_RWB_REGION_ONLY)) \
233 ,$(1)), FW_MAIN_B, \
234 $(if $(filter \
Wim Vervoorna1c259b2019-11-01 10:47:01 +0100235 $(call strip_quotes,$(CONFIG_RW_REGION_ONLY)) \
236 ,$(1)), $(RW_PARTITIONS), $(VBOOT_PARTITIONS) ) \
Sridhar Siricilla77025b32020-07-23 23:41:36 +0530237 ))))))
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700238
Julius Werner58c39382017-02-13 17:53:29 -0800239CONFIG_GBB_HWID := $(call strip_quotes,$(CONFIG_GBB_HWID))
240CONFIG_GBB_BMPFV_FILE := $(call strip_quotes,$(CONFIG_GBB_BMPFV_FILE))
241CONFIG_VBOOT_KEYBLOCK := $(call strip_quotes,$(CONFIG_VBOOT_KEYBLOCK))
242CONFIG_VBOOT_FIRMWARE_PRIVKEY := $(call strip_quotes,$(CONFIG_VBOOT_FIRMWARE_PRIVKEY))
243CONFIG_VBOOT_KERNEL_KEY := $(call strip_quotes,$(CONFIG_VBOOT_KERNEL_KEY))
244CONFIG_VBOOT_FWID_MODEL := $(call strip_quotes,$(CONFIG_VBOOT_FWID_MODEL))
245CONFIG_VBOOT_FWID_VERSION := $(call strip_quotes,$(CONFIG_VBOOT_FWID_VERSION))
246
247# bool-to-mask(var, value)
248# return "value" if var is "y", 0 otherwise
249bool-to-mask = $(if $(filter y,$(1)),$(2),0)
250
251GBB_FLAGS := $(call int-add, \
252 $(call bool-to-mask,$(CONFIG_GBB_FLAG_DEV_SCREEN_SHORT_DELAY),0x1) \
253 $(call bool-to-mask,$(CONFIG_GBB_FLAG_LOAD_OPTION_ROMS),0x2) \
254 $(call bool-to-mask,$(CONFIG_GBB_FLAG_ENABLE_ALTERNATE_OS),0x4) \
255 $(call bool-to-mask,$(CONFIG_GBB_FLAG_FORCE_DEV_SWITCH_ON),0x8) \
256 $(call bool-to-mask,$(CONFIG_GBB_FLAG_FORCE_DEV_BOOT_USB),0x10) \
257 $(call bool-to-mask,$(CONFIG_GBB_FLAG_DISABLE_FW_ROLLBACK_CHECK),0x20) \
258 $(call bool-to-mask,$(CONFIG_GBB_FLAG_ENTER_TRIGGERS_TONORM),0x40) \
Joel Kitchinga904fd62021-02-19 18:10:58 +0800259 $(call bool-to-mask,$(CONFIG_GBB_FLAG_FORCE_DEV_BOOT_ALTFW),0x80) \
Joel Kitching984d0c62019-12-04 15:33:57 +0800260 $(call bool-to-mask,$(CONFIG_GBB_FLAG_RUNNING_FAFT),0x100) \
Julius Werner58c39382017-02-13 17:53:29 -0800261 $(call bool-to-mask,$(CONFIG_GBB_FLAG_DISABLE_EC_SOFTWARE_SYNC),0x200) \
Joel Kitchinga904fd62021-02-19 18:10:58 +0800262 $(call bool-to-mask,$(CONFIG_GBB_FLAG_DEFAULT_DEV_BOOT_ALTFW),0x400) \
Julius Werner58c39382017-02-13 17:53:29 -0800263 $(call bool-to-mask,$(CONFIG_GBB_FLAG_DISABLE_PD_SOFTWARE_SYNC),0x800) \
264 $(call bool-to-mask,$(CONFIG_GBB_FLAG_DISABLE_LID_SHUTDOWN),0x1000) \
Julius Wernerae423852018-03-23 21:02:48 -0700265 $(call bool-to-mask,$(CONFIG_GBB_FLAG_FORCE_MANUAL_RECOVERY),0x4000) \
266 $(call bool-to-mask,$(CONFIG_GBB_FLAG_DISABLE_FWMP),0x8000) \
Eric Lai1cf24272021-01-29 16:14:37 +0800267 $(call bool-to-mask,$(CONFIG_GBB_FLAG_ENABLE_UDC),0x10000) \
Julius Werner58c39382017-02-13 17:53:29 -0800268 )
269
270ifneq ($(CONFIG_GBB_BMPFV_FILE),)
271$(obj)/gbb.sizetmp: $(obj)/coreboot.rom
272 $(CBFSTOOL) $< read -r GBB -f $@
273
274$(obj)/gbb.stub: $(obj)/coreboot.rom $(FUTILITY) $(obj)/gbb.sizetmp
275 @printf " CREATE GBB (with BMPFV)\n"
276 $(FUTILITY) gbb_utility -c 0x100,0x1000,$(call int-subtract,$(call file-size,$(obj)/gbb.sizetmp) 0x2180),0x1000 $@.tmp
277 mv $@.tmp $@
278else
279$(obj)/gbb.stub: $(obj)/coreboot.rom $(FUTILITY)
280 @printf " CREATE GBB (without BMPFV)\n"
281 $(FUTILITY) gbb_utility -c 0x100,0x1000,0,0x1000 $@.tmp
282 mv $@.tmp $@
283endif
284
Hung-Te Lin117453e2019-09-27 12:23:20 +0800285# Generate a test-only HWID
286ifeq ($(CONFIG_GBB_HWID),)
287CONFIG_GBB_HWID := $$($(top)/util/chromeos/gen_test_hwid.sh "$(CONFIG_MAINBOARD_PART_NUMBER)")
288endif
289
Julius Werner58c39382017-02-13 17:53:29 -0800290$(obj)/gbb.region: $(obj)/gbb.stub
291 @printf " SETUP GBB\n"
292 cp $< $@.tmp
293 $(FUTILITY) gbb_utility -s \
294 --hwid="$(CONFIG_GBB_HWID)" \
295 --rootkey="$(CONFIG_VBOOT_ROOT_KEY)" \
296 --recoverykey="$(CONFIG_VBOOT_RECOVERY_KEY)" \
297 --flags=$(GBB_FLAGS) \
298 $@.tmp
299ifneq ($(CONFIG_GBB_BMPFV_FILE),)
300 $(FUTILITY) gbb_utility -s \
301 --bmpfv="$(CONFIG_GBB_BMPFV_FILE)" \
302 $@.tmp
303endif
304 mv $@.tmp $@
305
Raul E Rangel8c38a8b2018-08-06 16:13:14 -0600306$(obj)/fwid.version:
307 echo -n "$(CONFIG_VBOOT_FWID_VERSION)" > $@
308
309$(obj)/fwid.region: $(obj)/fwid.version
310 printf "%s%s\0" \
311 "$(CONFIG_VBOOT_FWID_MODEL)" \
Raul E Rangel128b0cf2018-08-09 12:30:39 -0600312 "$$(cat "$(obj)/fwid.version")" > $@
Julius Werner58c39382017-02-13 17:53:29 -0800313
314build_complete:: $(obj)/gbb.region $(obj)/fwid.region
315 @printf " WRITE GBB\n"
316 $(CBFSTOOL) $(obj)/coreboot.rom write -u -r GBB -i 0 -f $(obj)/gbb.region
317 $(CBFSTOOL) $(obj)/coreboot.rom write -u -r RO_FRID -i 0 -f $(obj)/fwid.region
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200318ifeq ($(CONFIG_VBOOT_SLOTS_RW_A),y)
Julius Werner58c39382017-02-13 17:53:29 -0800319 $(CBFSTOOL) $(obj)/coreboot.rom write -u -r RW_FWID_A -i 0 -f $(obj)/fwid.region
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200320endif
321ifeq ($(CONFIG_VBOOT_SLOTS_RW_AB),y)
Julius Werner58c39382017-02-13 17:53:29 -0800322 $(CBFSTOOL) $(obj)/coreboot.rom write -u -r RW_FWID_B -i 0 -f $(obj)/fwid.region
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200323endif
Julius Werner58c39382017-02-13 17:53:29 -0800324
325ifneq ($(shell grep "SHARED_DATA" "$(CONFIG_FMDFILE)"),)
326build_complete::
327 printf "\0" > $(obj)/shared_data.region
328 $(CBFSTOOL) $(obj)/coreboot.rom write -u -r SHARED_DATA -i 0 -f $(obj)/shared_data.region
329endif
330
Julius Werner5eda52a2022-05-19 14:37:21 -0700331fmap-section-offset-cmd = $(FUTILITY) dump_fmap -p $(obj)/coreboot.rom | \
332 grep '^$(1) ' | cut '-d ' -f2
Julius Werner39914a52022-08-01 15:04:44 -0700333fmap-section-size-cmd = $(FUTILITY) dump_fmap -p $(obj)/coreboot.rom | \
334 grep '^$(1) ' | cut '-d ' -f3
Julius Werner5eda52a2022-05-19 14:37:21 -0700335
336ifeq ($(CONFIG_VBOOT_GSCVD),y)
337#
338# vboot-gscvd-ranges
339#
340# This variable expands to the list of ranges that will be verified by the GSC
341# before releasing the SoC from reset. It needs to cover all security-relevant
342# ranges of the flash that CBFS verification cannot cover itself. By default
343# this is the `GBB` FMAP section (not handled here but through the special `-G`
344# parameter to `futility gscvd` below) and the bootblock. Here we are
345# initializing the variable to expansions that produce ranges for both the
346# `BOOTBLOCK` FMAP section (filled up to the real size of
347# `$(objcbfs)/bootblock.bin`) and the `bootblock` file in the primary CBFS --
348# only one of those two should normally exist on a given platform.
349#
350# Platforms where the bootblock isn't the first and only thing loaded by the
351# hardware or which otherwise have special security-relevant flash areas that
352# cannot be covered normally by CBFS verification will need to manually add
353# ranges to this variable in their own Makefiles, in the format produced by
354# printf("%x:%x", start_offset, size). The variable is only expanded once in a
355# recipe of the `files_added` target, so $(shell) expansions that depend on
356# inspecting $(obj)/coreboot.rom (or any of its dependencies) are valid.
357#
358vboot-gscvd-ranges += $(shell ( \
359 offset=$$($(call fmap-section-offset-cmd,BOOTBLOCK)) ;\
360 if [ -n "$$offset" ]; then \
361 size=$$(wc -c < $(objcbfs)/bootblock.bin) ;\
362 printf "%x:%x" $$offset $$size ;\
363 fi ;\
364))
365vboot-gscvd-ranges += $(shell ( \
366 line=$$($(CBFSTOOL) $(obj)/coreboot.rom print -k | grep '^bootblock[[:space:]]') ;\
367 if [ -n "$$line" ]; then \
368 cbfs_start=$$($(call fmap-section-offset-cmd,COREBOOT)) ;\
369 offset=$$(printf "$$line" | cut -f2) ;\
370 size=$$(printf "$$line" | cut -f6) ;\
371 printf "%x:%x" $$((cbfs_start + offset)) $$size ;\
372 fi ;\
373))
374files_added:: $(FUTILITY)
375 @printf " WRITE GSCVD\n"
376 gscvd_range_args="$(foreach range,$(vboot-gscvd-ranges),-R $(range))" ;\
377 if [ -z "$$gscvd_range_args" ]; then \
378 echo "ERROR: No valid GSCVD ranges detected in image!" ;\
379 exit 1 ;\
380 fi ;\
381 $(FUTILITY) gscvd -G $$gscvd_range_args -b $(CONFIG_VBOOT_GSC_BOARD_ID) \
382 -r "$(CONFIG_VBOOT_GSCVD_ROOT_PUBKEY)" \
383 -p "$(CONFIG_VBOOT_GSCVD_PLATFORM_PRIVKEY)" \
384 -k "$(CONFIG_VBOOT_GSCVD_PLATFORM_KEYBLOCK)" \
385 $(obj)/coreboot.rom
386endif
387
Jakub Czapiga190afda2022-07-25 14:24:06 +0200388ifneq (,$(filter y,$(CONFIG_VBOOT_SLOTS_RW_A) $(CONFIG_VBOOT_SLOTS_RW_AB)))
389files_added:: $(obj)/coreboot.rom $(FUTILITY) $(CBFSTOOL)
390 CBFSTOOL="$(CBFSTOOL)" \
391 $(FUTILITY) sign \
Julius Werner58c39382017-02-13 17:53:29 -0800392 --signprivate "$(CONFIG_VBOOT_FIRMWARE_PRIVKEY)" \
Jakub Czapiga190afda2022-07-25 14:24:06 +0200393 --keyblock "$(CONFIG_VBOOT_KEYBLOCK)" \
Julius Werner58c39382017-02-13 17:53:29 -0800394 --kernelkey "$(CONFIG_VBOOT_KERNEL_KEY)" \
Jakub Czapiga190afda2022-07-25 14:24:06 +0200395 --version $(CONFIG_VBOOT_KEYBLOCK_VERSION) \
396 --flags $(CONFIG_VBOOT_KEYBLOCK_PREAMBLE_FLAGS) \
397 $(obj)/coreboot.rom
398 if [ "$(CONFIG_VBOOT_SLOTS_RW_AB)" = 'y' ]; then \
399 printf " FLASHMAP Layout generated for RO, A and B partition.\n"; \
400 elif [ "$(CONFIG_VBOOT_SLOTS_RW_A)" = 'y' ]; then \
401 printf " FLASHMAP Layout generated for RO and A partition.\n"; \
402 fi
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200403else
Martin Roth372503f2023-12-08 00:43:23 -0700404show_notices::
Philipp Deppenwiesea558ca92018-07-28 23:30:49 +0200405 @printf " FLASHMAP Layout generated for RO partition only.\n"
406 @printf " Beware that there is no failure safety in case of update now!\n"
407endif
Julius Werner58c39382017-02-13 17:53:29 -0800408
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700409endif # CONFIG_VBOOT