1## @file
2# FDF file of Clanton Peak CRB platform with 32-bit DXE
3#
4# This package provides QuarkNcSocId platform specific modules.
5# Copyright (c) 2013 - 2015 Intel Corporation.
6#
7# This program and the accompanying materials
8# are licensed and made available under the terms and conditions of the BSD License
9# which accompanies this distribution.  The full text of the license may be found at
10# http://opensource.org/licenses/bsd-license.php
11#
12# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15##
16
17################################################################################
18#
19# Defines Section - statements that will be processed to create a Makefile.
20#
21################################################################################
22[Defines]
23#                  Address 0x100000000 (4 GB reset address)
24#                                 Base                               Size
25#                                      +---------------------------+
26#                           FLASH_BASE | FD.Quark:                 | 0x800000 (8 MB)
27#                           0xFF800000 | BaseAddress               |
28#                                      +---------------------------+
29#
30# Flash offsets are 0 based, but are relative to FD.Quark BaseAddress, e.g. Payload Base is at 0x400000, Flash Base is at 0xFF800000 for 8 MB SPI part.
31# 0xFF800000 + 0x400000 = 0xFFC00000.
32#
33#                          Address 0x0 (0xFF800000 for 8 MB SPI part)
34#                                      +---------------------------+
35#                FLASH_FV_PAYLOAD_BASE | Payload Image             | FLASH_FV_PAYLOAD_SIZE
36#                           0x00400000 |                           | 0x00100000
37#                                      +---------------------------+
38#                   FLASH_FV_MAIN_BASE | FvMain Image (Compressed) | FLASH_FV_MAIN_SIZE
39#                           0x00500000 |                           | 0x001E0000
40#                                      +---------------------------+
41#                      NVRAM_AREA_BASE | NVRAM Area=               | NVRAM_AREA_SIZE
42#                           0x006E0000 | Variable + FTW Working +  |
43#                                      | FTW Spare                 |
44#                                      +---+-------------------+---+
45#                 NVRAM_AREA_VARIABLE_BASE |                   | NVRAM_AREA_VARIABLE_SIZE
46#                                          |                   |
47#                                          +-------------------+
48#                         FTW_WORKING_BASE |                   | FTW_WORKING_SIZE
49#                                          |                   |
50#                                          +-------------------+
51#                           FTW_SPARE_BASE |                   | FTW_SPARE_SIZE
52#                                          |                   |
53#                                      +---+-------------------+---+
54#                      RMU_BINARY_BASE | RMU Binary                | RMU_BINARY_SIZE
55#                           0x00700000 |                           | 0x00008000
56#                                      +---------------------------+
57#                   PLATFORM_DATA_BASE | PlatformData Binary       | PLATFORM_DATA_SIZE
58#                           0x00710000 |                           | 0x00001000
59#                                      +---------------------------+
60#                FVRECOVERY_IMAGE_BASE | FVRECOVERY Image          | FVRECOVERY_IMAGE_SIZE
61#                             0x720000 |                           | 0x000E0000
62#                                      +---------------------------+
63
64  #
65  # Define value used to compute FLASH regions below reset vector location just below 4GB
66  #
67  DEFINE RESET_ADDRESS                           = 0x100000000       # 4 GB
68
69  #
70  # Set size of FLASH to 8MB
71  #
72  DEFINE FLASH_SIZE                              = 0x800000
73  DEFINE FLASH_BASE                              = $(RESET_ADDRESS) - $(FLASH_SIZE)                                                      # The base address of the Flash Device
74
75  #
76  # Set FLASH block size to 4KB
77  #
78  DEFINE FLASH_BLOCKSIZE                         = 0x1000            # 4 KB
79
80  #
81  # Misc settings
82  #
83  DEFINE FLASH_BLOCKSIZE_DATA                    = 0x00, 0x10, 0x00, 0x00                                                                # equivalent for DATA blocks
84
85  #
86  # Start PAYLOAD at 4MB into 8MB FLASH
87  #
88  DEFINE FLASH_FV_PAYLOAD_BASE                   = 0x00400000
89  DEFINE FLASH_FV_PAYLOAD_SIZE                   = 0x00100000
90
91  #
92  # Put FVMAIN between PAYLOAD and RMU Binary
93  #
94  DEFINE FLASH_FV_MAIN_BASE                      = 0x00500000
95  DEFINE FLASH_FV_MAIN_SIZE                      = 0x001E0000
96
97  #
98  # Place NV Storage just above Platform Data Base
99  #
100  DEFINE NVRAM_AREA_VARIABLE_BASE                = 0x006E0000
101  DEFINE NVRAM_AREA_SIZE                         = 0x00020000
102
103  DEFINE NVRAM_AREA_VARIABLE_SIZE                = 0x0000E000
104  DEFINE FTW_WORKING_BASE                        = $(NVRAM_AREA_VARIABLE_BASE) + $(NVRAM_AREA_VARIABLE_SIZE)
105  DEFINE FTW_WORKING_SIZE                        = 0x00002000
106  DEFINE FTW_SPARE_BASE                          = $(FTW_WORKING_BASE) + $(FTW_WORKING_SIZE)
107  DEFINE FTW_SPARE_SIZE                          = $(NVRAM_AREA_SIZE) - $(NVRAM_AREA_VARIABLE_SIZE) - $(FTW_WORKING_SIZE)
108
109  #
110  # RMU Binary must be at fixed address 1MB below 4GB (0xFFF00000)
111  #
112  DEFINE RMU_BINARY_BASE                         = 0x00700000  # HW fixed address
113  DEFINE RMU_BINARY_SIZE                         = 0x00008000  # HW fixed address, so fixed size
114
115  #
116  # Platform Data Base must be 64KB above RMU
117  #
118  DEFINE VPD_BASE                                = 0x00708000
119  DEFINE VPD_SIZE                                = 0x00001000
120
121  #
122  # Place FV Recovery above NV Storage
123  #
124  DEFINE FVRECOVERY_IMAGE_SIZE                   = 0x000F0000
125  DEFINE FVRECOVERY_IMAGE_BASE                   = $(FLASH_SIZE) - $(FVRECOVERY_IMAGE_SIZE)
126
127################################################################################
128#
129# FD Section
130# The [FD] Section is made up of the definition statements and a
131# description of what goes into  the Flash Device Image.  Each FD section
132# defines one flash "device" image.  A flash device image may be one of
133# the following: Removable media bootable image (like a boot floppy
134# image,) an Option ROM image (that would be "flashed" into an add-in
135# card,) a System "Flash"  image (that would be burned into a system's
136# flash) or an Update ("Capsule") image that will be used to update and
137# existing system flash.
138#
139################################################################################
140[FD.Quark]
141BaseAddress   = 0xFF800000                   #The base address of the Flash Device; set to same value as FLASH_BASE.
142Size          = 0x800000                     #The size in bytes of the Flash Device; set to same value as FLASH_SIZE.
143ErasePolarity = 1
144BlockSize     = $(FLASH_BLOCKSIZE)
145NumBlocks     = 0x800                        #The number of blocks for the Flash Device.
146
147SET gQuarkPlatformTokenSpaceGuid.PcdFlashAreaBaseAddress = $(FLASH_BASE)
148SET gQuarkPlatformTokenSpaceGuid.PcdFlashAreaSize        = $(FLASH_SIZE)
149
150################################################################################
151#
152# Following are lists of FD Region layout which correspond to the locations of different
153# images within the flash device.
154#
155# Regions must be defined in ascending order and may not overlap.
156#
157# A Layout Region start with a eight digit hex offset (leading "0x" required) followed by
158# the pipe "|" character, followed by the size of the region, also in hex with the leading
159# "0x" characters. Like:
160# Offset|Size
161# PcdOffsetCName|PcdSizeCName
162# RegionType <FV, DATA, or FILE>
163#
164################################################################################
165
166########################################################
167# Quark Payload Image
168########################################################
169$(FLASH_FV_PAYLOAD_BASE)|$(FLASH_FV_PAYLOAD_SIZE)
170gQuarkPlatformTokenSpaceGuid.PcdFlashFvPayloadBase|gQuarkPlatformTokenSpaceGuid.PcdFlashFvPayloadSize
171FV = PAYLOAD
172
173########################################################
174# Quark FVMAIN Image (Compressed)
175########################################################
176$(FLASH_FV_MAIN_BASE)|$(FLASH_FV_MAIN_SIZE)
177gQuarkPlatformTokenSpaceGuid.PcdFlashFvMainBase|gQuarkPlatformTokenSpaceGuid.PcdFlashFvMainSize
178FV = FVMAIN_COMPACT
179
180#############################################################################
181# Quark NVRAM Area
182# Quark NVRAM Area contains: Variable + FTW Working + FTW Spare
183#############################################################################
184$(NVRAM_AREA_VARIABLE_BASE)|$(NVRAM_AREA_VARIABLE_SIZE)
185gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase|gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
186#NV_VARIABLE_STORE
187DATA = {
188  ## This is the EFI_FIRMWARE_VOLUME_HEADER
189  # ZeroVector []
190  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
191  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
192  # FileSystemGuid: gEfiSystemNvDataFvGuid         =
193  #  { 0xFFF12B8D, 0x7696, 0x4C8B, { 0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50 }}
194  0x8D, 0x2B, 0xF1, 0xFF, 0x96, 0x76, 0x8B, 0x4C,
195  0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50,
196  # FvLength: 0x20000
197  0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
198  #Signature "_FVH"       #Attributes
199  0x5f, 0x46, 0x56, 0x48, 0xff, 0xfe, 0x04, 0x00,
200  #HeaderLength #CheckSum #ExtHeaderOffset #Reserved #Revision
201  0x48, 0x00, 0x19, 0xF9, 0x00, 0x00, 0x00, 0x02,
202  #Blockmap[0]: 32 Blocks * 0x1000 Bytes / Block
203  0x20, 0x00, 0x00, 0x00, $(FLASH_BLOCKSIZE_DATA),
204  #Blockmap[1]: End
205  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
206  ## This is the VARIABLE_STORE_HEADER
207  !if $(SECURE_BOOT_ENABLE)
208    # Signature: gEfiAuthenticatedVariableGuid = { 0xaaf32c78, 0x947b, 0x439a, { 0xa1, 0x80, 0x2e, 0x14, 0x4e, 0xc3, 0x77, 0x92 } }
209    0x78, 0x2c, 0xf3, 0xaa, 0x7b, 0x94, 0x9a, 0x43,
210    0xa1, 0x80, 0x2e, 0x14, 0x4e, 0xc3, 0x77, 0x92,
211  !else
212    #  Signature: gEfiVariableGuid = { 0xddcf3616, 0x3275, 0x4164, { 0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d }}
213    0x16, 0x36, 0xcf, 0xdd, 0x75, 0x32, 0x64, 0x41,
214    0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d,
215  !endif
216  #Size: 0x0E000 (gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize) - 0x48 (size of EFI_FIRMWARE_VOLUME_HEADER) = 0x0DFB8
217  # This can speed up the Variable Dispatch a bit.
218  0xB8, 0xDF, 0x00, 0x00,
219  #FORMATTED: 0x5A #HEALTHY: 0xFE #Reserved: UINT16 #Reserved1: UINT32
220  0x5A, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
221}
222
223$(FTW_WORKING_BASE)|$(FTW_WORKING_SIZE)
224gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase|gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
225#NV_FTW_WORKING
226DATA = {
227  # EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER->Signature = gEdkiiWorkingBlockSignatureGuid         =
228  #  { 0x9e58292b, 0x7c68, 0x497d, { 0xa0, 0xce, 0x65,  0x0, 0xfd, 0x9f, 0x1b, 0x95 }}
229  0x2b, 0x29, 0x58, 0x9e, 0x68, 0x7c, 0x7d, 0x49,
230  0xa0, 0xce, 0x65,  0x0, 0xfd, 0x9f, 0x1b, 0x95,
231  # Crc:UINT32            #WorkingBlockValid:1, WorkingBlockInvalid:1, Reserved
232  0xE2, 0x33, 0xF2, 0x03, 0xFE, 0xFF, 0xFF, 0xFF,
233  # WriteQueueSize: UINT64 #Size: 0x2000 - 0x20 (FTW_WORKING_HEADER) = 0x1FE0
234  0xE0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
235}
236
237$(FTW_SPARE_BASE)|$(FTW_SPARE_SIZE)
238gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
239#NV_FTW_SPARE
240
241#########################################################
242# Quark Remote Management Unit Binary
243#########################################################
244$(RMU_BINARY_BASE)|$(RMU_BINARY_SIZE)
245INF  QuarkSocBinPkg/QuarkNorthCluster/Binary/QuarkMicrocode/QuarkMicrocode.inf
246
247#########################################################
248# PlatformData Binary, default for standalone is none built-in so user selects.
249#########################################################
250$(VPD_BASE)|$(VPD_SIZE)
251gEfiMdeModulePkgTokenSpaceGuid.PcdVpdBaseAddress
252FILE = $(OUTPUT_DIRECTORY)/$(TARGET)_$(TOOL_CHAIN_TAG)/FV/8C3D856A-9BE6-468E-850A-24F7A8D38E08.bin
253
254#######################
255# Quark FVRECOVERY Image
256#######################
257$(FVRECOVERY_IMAGE_BASE)|$(FVRECOVERY_IMAGE_SIZE)
258gQuarkPlatformTokenSpaceGuid.PcdFlashFvRecoveryBase|gQuarkPlatformTokenSpaceGuid.PcdFlashFvRecoverySize
259FV = FVRECOVERY
260
261################################################################################
262#
263# FV Section
264#
265# [FV] section is used to define what components or modules are placed within a flash
266# device file.  This section also defines order the components and modules are positioned
267# within the image.  The [FV] section consists of define statements, set statements and
268# module statements.
269#
270################################################################################
271[FV.FVRECOVERY]
272BlockSize          = $(FLASH_BLOCKSIZE)
273FvAlignment        = 16         #FV alignment and FV attributes setting.
274ERASE_POLARITY     = 1
275MEMORY_MAPPED      = TRUE
276STICKY_WRITE       = TRUE
277LOCK_CAP           = TRUE
278LOCK_STATUS        = TRUE
279WRITE_DISABLED_CAP = TRUE
280WRITE_ENABLED_CAP  = TRUE
281WRITE_STATUS       = TRUE
282WRITE_LOCK_CAP     = TRUE
283WRITE_LOCK_STATUS  = TRUE
284READ_DISABLED_CAP  = TRUE
285READ_ENABLED_CAP   = TRUE
286READ_STATUS        = TRUE
287READ_LOCK_CAP      = TRUE
288READ_LOCK_STATUS   = TRUE
289FvNameGuid         = 18D6D9F4-2EEF-4913-AEE6-BE61C6DA6CC8
290
291################################################################################
292#
293# The INF statements point to EDK component and EDK II module INF files, which will be placed into this FV image.
294# Parsing tools will scan the INF file to determine the type of component or module.
295# The component or module type is used to reference the standard rules
296# defined elsewhere in the FDF file.
297#
298# The format for INF statements is:
299# INF $(PathAndInfFileName)
300#
301################################################################################
302
303##
304#  PEI Apriori file example, more PEIM module added later.
305##
306APRIORI PEI {
307  INF  MdeModulePkg/Universal/PCD/Pei/Pcd.inf
308  # PlatformConfigPei should be immediately after Pcd driver.
309  INF  QuarkPlatformPkg/Platform/Pei/PlatformConfig/PlatformConfigPei.inf
310  INF  MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PcatSingleSegmentPciCfg2Pei.inf
311}
312
313##
314#  SEC Phase modules
315##
316INF  UefiCpuPkg/SecCore/SecCore.inf
317
318INF  MdeModulePkg/Core/Pei/PeiMain.inf
319
320##
321#  PEI Phase RAW Data files.
322##
323FILE FREEFORM = PCD(gEfiQuarkNcSocIdTokenSpaceGuid.PcdQuarkMicrocodeFile) {
324  SECTION RAW = QuarkSocBinPkg/QuarkNorthCluster/Binary/QuarkMicrocode/RMU.bin
325}
326
327INF  RuleOverride = NORELOC  MdeModulePkg/Universal/PCD/Pei/Pcd.inf
328INF  QuarkPlatformPkg/Platform/Pei/PlatformConfig/PlatformConfigPei.inf
329INF  RuleOverride = NORELOC  MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf
330INF  RuleOverride = NORELOC  MdeModulePkg/Universal/Variable/Pei/VariablePei.inf
331INF  RuleOverride = NORELOC  QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/MemoryInitPei.inf
332INF  QuarkPlatformPkg/Platform/Pei/PlatformInit/PlatformEarlyInit.inf
333INF  MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PcatSingleSegmentPciCfg2Pei.inf
334INF  MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf
335
336################################################################################
337#
338# FV Section
339#
340# [FV] section is used to define what components or modules are placed within a flash
341# device file.  This section also defines order the components and modules are positioned
342# within the image.  The [FV] section consists of define statements, set statements and
343# module statements.
344#
345################################################################################
346[FV.FVMAIN]
347BlockSize          = $(FLASH_BLOCKSIZE)
348FvAlignment        = 16
349ERASE_POLARITY     = 1
350MEMORY_MAPPED      = TRUE
351STICKY_WRITE       = TRUE
352LOCK_CAP           = TRUE
353LOCK_STATUS        = TRUE
354WRITE_DISABLED_CAP = TRUE
355WRITE_ENABLED_CAP  = TRUE
356WRITE_STATUS       = TRUE
357WRITE_LOCK_CAP     = TRUE
358WRITE_LOCK_STATUS  = TRUE
359READ_DISABLED_CAP  = TRUE
360READ_ENABLED_CAP   = TRUE
361READ_STATUS        = TRUE
362READ_LOCK_CAP      = TRUE
363READ_LOCK_STATUS   = TRUE
364FvNameGuid         = 30D9ED01-38D2-418a-90D5-C561750BF80F
365
366##
367#  DXE Phase modules
368##
369INF  MdeModulePkg/Core/Dxe/DxeMain.inf
370INF  MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
371
372!if $(SOURCE_DEBUG_ENABLE)
373  INF  SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.inf
374!endif
375
376#
377# Early SoC / Platform modules
378#
379INF  QuarkPlatformPkg/Platform/Dxe/PlatformInit/PlatformInitDxe.inf
380
381##
382#  EDK Core modules
383##
384INF  UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf
385
386INF  MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
387INF  UefiCpuPkg/CpuDxe/CpuDxe.inf
388INF  MdeModulePkg/Universal/Metronome/Metronome.inf
389INF  MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
390INF  MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
391INF  MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
392INF  MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
393INF  MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
394INF  MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
395INF  PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf
396INF  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
397INF  MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
398
399#
400# Platform
401#
402INF  MdeModulePkg/Universal/BdsDxe/BdsDxe.inf
403#INF  MdeModulePkg/Application/UiApp/UiApp.inf
404
405INF  QuarkPlatformPkg/Pci/Dxe/PciHostBridge/PciHostBridge.inf
406INF  QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/QNCInitDxe.inf
407INF  PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf
408INF  QuarkPlatformPkg/Platform/Dxe/Setup/DxePlatform.inf
409
410#
411# PCI
412#
413INF  QuarkPlatformPkg/Pci/Dxe/PciPlatform/PciPlatform.inf
414INF  MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
415INF  QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/IohInitDxe.inf
416!if $(SOURCE_DEBUG_ENABLE)
417!else
418INF  MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
419!endif
420
421#
422# Console
423#
424INF  MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
425INF  MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
426INF  MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
427
428INF  MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
429INF  MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
430INF  MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
431INF  MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
432
433#
434# File System Modules
435#
436INF  MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemDxe.inf
437
438################################################################################
439#
440# FV Section
441#
442# [FV] section is used to define what components or modules are placed within a flash
443# device file.  This section also defines order the components and modules are positioned
444# within the image.  The [FV] section consists of define statements, set statements and
445# module statements.
446#
447################################################################################
448[FV.FVMAIN_COMPACT]
449FvAlignment        = 16
450ERASE_POLARITY     = 1
451MEMORY_MAPPED      = TRUE
452STICKY_WRITE       = TRUE
453LOCK_CAP           = TRUE
454LOCK_STATUS        = TRUE
455WRITE_DISABLED_CAP = TRUE
456WRITE_ENABLED_CAP  = TRUE
457WRITE_STATUS       = TRUE
458WRITE_LOCK_CAP     = TRUE
459WRITE_LOCK_STATUS  = TRUE
460READ_DISABLED_CAP  = TRUE
461READ_ENABLED_CAP   = TRUE
462READ_STATUS        = TRUE
463READ_LOCK_CAP      = TRUE
464READ_LOCK_STATUS   = TRUE
465
466FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 {
467  SECTION GUIDED A31280AD-481E-41B6-95E8-127F4C984779 {    # TIANO COMPRESS GUID
468    SECTION FV_IMAGE = FVMAIN
469  }
470}
471
472################################################################################
473#
474# FV Section
475#
476# [FV] section is used to define what components or modules are placed within a flash
477# device file.  This section also defines order the components and modules are positioned
478# within the image.  The [FV] section consists of define statements, set statements and
479# module statements.
480#
481################################################################################
482[FV.PAYLOAD]
483BlockSize          = $(FLASH_BLOCKSIZE)
484FvAlignment        = 16         #FV alignment and FV attributes setting.
485ERASE_POLARITY     = 1
486MEMORY_MAPPED      = TRUE
487STICKY_WRITE       = TRUE
488LOCK_CAP           = TRUE
489LOCK_STATUS        = TRUE
490WRITE_DISABLED_CAP = TRUE
491WRITE_ENABLED_CAP  = TRUE
492WRITE_STATUS       = TRUE
493WRITE_LOCK_CAP     = TRUE
494WRITE_LOCK_STATUS  = TRUE
495READ_DISABLED_CAP  = TRUE
496READ_ENABLED_CAP   = TRUE
497READ_STATUS        = TRUE
498READ_LOCK_CAP      = TRUE
499READ_LOCK_STATUS   = TRUE
500
501#
502# Shell and Applications
503#
504INF  ShellPkg/Application/Shell/Shell.inf
505!if $(PERFORMANCE_ENABLE)
506INF  PerformancePkg/Dp_App/Dp.inf
507!endif
508
509################################################################################
510#
511# Rules are use with the [FV] section's module INF type to define
512# how an FFS file is created for a given INF file. The following Rule are the default
513# rules for the different module type. User can add the customized rules to define the
514# content of the FFS file.
515#
516################################################################################
517[Rule.Common.SEC]
518  FILE SEC = $(NAMED_GUID) RELOCS_STRIPPED {
519    TE  TE    Align = 8       $(INF_OUTPUT)/$(MODULE_NAME).efi
520    RAW BIN   Align = 16      |.com
521  }
522
523[Rule.Common.PEI_CORE]
524  FILE PEI_CORE = $(NAMED_GUID)            {
525    TE       TE               $(INF_OUTPUT)/$(MODULE_NAME).efi
526    UI       STRING="$(MODULE_NAME)" Optional
527    VERSION  STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
528  }
529
530[Rule.Common.PEIM.NORELOC]
531  FILE PEIM = $(NAMED_GUID) RELOCS_STRIPPED  {
532     PEI_DEPEX PEI_DEPEX Optional        $(INF_OUTPUT)/$(MODULE_NAME).depex
533     TE        TE                        $(INF_OUTPUT)/$(MODULE_NAME).efi
534     UI        STRING="$(MODULE_NAME)" Optional
535     VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
536  }
537
538[Rule.Common.PEIM]
539  FILE PEIM = $(NAMED_GUID)               {
540     PEI_DEPEX PEI_DEPEX Optional        $(INF_OUTPUT)/$(MODULE_NAME).depex
541     TE        TE                        $(INF_OUTPUT)/$(MODULE_NAME).efi
542     UI        STRING="$(MODULE_NAME)" Optional
543     VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
544  }
545
546[Rule.Common.DXE_CORE]
547  FILE DXE_CORE = $(NAMED_GUID) {
548    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
549    UI        STRING="$(MODULE_NAME)" Optional
550    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
551  }
552
553[Rule.Common.UEFI_DRIVER]
554  FILE DRIVER = $(NAMED_GUID) {
555    DXE_DEPEX DXE_DEPEX Optional       $(INF_OUTPUT)/$(MODULE_NAME).depex
556    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
557    UI        STRING="$(MODULE_NAME)" Optional
558    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
559  }
560
561[Rule.Common.DXE_DRIVER]
562  FILE DRIVER = $(NAMED_GUID) {
563    DXE_DEPEX DXE_DEPEX Optional       $(INF_OUTPUT)/$(MODULE_NAME).depex
564    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
565    UI        STRING="$(MODULE_NAME)" Optional
566    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
567  }
568
569[Rule.Common.DXE_RUNTIME_DRIVER]
570  FILE DRIVER = $(NAMED_GUID) {
571    DXE_DEPEX DXE_DEPEX Optional       $(INF_OUTPUT)/$(MODULE_NAME).depex
572    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
573    UI        STRING="$(MODULE_NAME)" Optional
574    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
575  }
576
577[Rule.Common.DXE_SMM_DRIVER]
578  FILE SMM = $(NAMED_GUID) {
579    SMM_DEPEX SMM_DEPEX Optional       $(INF_OUTPUT)/$(MODULE_NAME).depex
580    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
581    UI        STRING="$(MODULE_NAME)" Optional
582    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
583  }
584
585[Rule.Common.SMM_CORE]
586  FILE SMM_CORE = $(NAMED_GUID) {
587    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
588    UI        STRING="$(MODULE_NAME)" Optional
589    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
590  }
591
592[Rule.Common.UEFI_APPLICATION]
593  FILE APPLICATION = $(NAMED_GUID) {
594    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
595    UI        STRING="$(MODULE_NAME)" Optional
596    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
597  }
598
599[Rule.Common.UEFI_APPLICATION.UI]
600  FILE APPLICATION = $(NAMED_GUID) {
601    PE32      PE32                     $(INF_OUTPUT)/$(MODULE_NAME).efi
602    UI        STRING="Enter Setup"
603    VERSION   STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER)
604  }
605
606[Rule.Common.USER_DEFINED.ACPITABLE]
607  FILE FREEFORM = $(NAMED_GUID) {
608    RAW ACPI               |.acpi
609    RAW ASL                |.aml
610  }
611