1 | ## @file
|
---|
2 | # FDF include file that defines the main macros and sets the dependent PCDs.
|
---|
3 | #
|
---|
4 | # Copyright (C) 2014, Red Hat, Inc.
|
---|
5 | # Copyright (c) 2006 - 2022, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | DEFINE BLOCK_SIZE = 0x1000
|
---|
12 | DEFINE VARS_OFFSET = 0
|
---|
13 |
|
---|
14 | DEFINE VARS_SIZE = 0x84000
|
---|
15 | DEFINE VARS_BLOCKS = 0x84
|
---|
16 | DEFINE VARS_LIVE_SIZE = 0x40000
|
---|
17 | DEFINE VARS_SPARE_SIZE = 0x42000
|
---|
18 |
|
---|
19 | DEFINE FW_BASE_ADDRESS = 0x004FFFD0
|
---|
20 | DEFINE FW_SIZE = 0x00400000
|
---|
21 | DEFINE FW_BLOCKS = 0x400
|
---|
22 | DEFINE CODE_BASE_ADDRESS = 0x00583FD0
|
---|
23 | DEFINE CODE_SIZE = 0x0037C000
|
---|
24 | DEFINE CODE_BLOCKS = 0x37C
|
---|
25 | DEFINE FVMAIN_SIZE = 0x00348000
|
---|
26 | DEFINE SECFV_OFFSET = 0x003CC000
|
---|
27 | DEFINE SECFV_SIZE = 0x34000
|
---|
28 |
|
---|
29 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFdBaseAddress = $(FW_BASE_ADDRESS)
|
---|
30 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareFdSize = $(FW_SIZE)
|
---|
31 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareBlockSize = $(BLOCK_SIZE)
|
---|
32 |
|
---|
33 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageVariableBase = $(FW_BASE_ADDRESS)
|
---|
34 | SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize = $(VARS_LIVE_SIZE)
|
---|
35 |
|
---|
36 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageVariableBase + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
|
---|
37 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogSize = $(BLOCK_SIZE)
|
---|
38 |
|
---|
39 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwWorkingBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogBase + gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogSize
|
---|
40 | SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize = $(BLOCK_SIZE)
|
---|
41 |
|
---|
42 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwSpareBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwWorkingBase + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
|
---|
43 | SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize = $(VARS_SPARE_SIZE)
|
---|
44 |
|
---|
45 | # The OVMF WorkArea contains a fixed size header followed by the actual data.
|
---|
46 | # The size of header is accessed through a fixed PCD in the reset vector code.
|
---|
47 | # The value need to be kept in sync with the any changes to the Confidential
|
---|
48 | # Computing Work Area header defined in the Include/WorkArea.h
|
---|
49 | SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfConfidentialComputingWorkAreaHeader = 4
|
---|
50 |
|
---|
51 | SET gUefiOvmfPkgTokenSpaceGuid.PcdCfvBase = $(FW_BASE_ADDRESS)
|
---|
52 | SET gUefiOvmfPkgTokenSpaceGuid.PcdCfvRawDataOffset = $(VARS_OFFSET)
|
---|
53 | SET gUefiOvmfPkgTokenSpaceGuid.PcdCfvRawDataSize = $(VARS_SIZE)
|
---|
54 |
|
---|
55 | SET gUefiOvmfPkgTokenSpaceGuid.PcdBfvBase = $(CODE_BASE_ADDRESS)
|
---|
56 | SET gUefiOvmfPkgTokenSpaceGuid.PcdBfvRawDataOffset = $(VARS_SIZE)
|
---|
57 | SET gUefiOvmfPkgTokenSpaceGuid.PcdBfvRawDataSize = $(CODE_SIZE)
|
---|
58 |
|
---|
59 | !if $(SMM_REQUIRE) == TRUE
|
---|
60 | SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64 = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageVariableBase
|
---|
61 | SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwWorkingBase
|
---|
62 | SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwSpareBase
|
---|
63 | !endif
|
---|
64 |
|
---|
65 | DEFINE MEMFD_BASE_ADDRESS = 0x800000
|
---|