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 INF MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf 312 INF MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf 313} 314 315## 316# SEC Phase modules 317## 318INF UefiCpuPkg/SecCore/SecCore.inf 319 320INF MdeModulePkg/Core/Pei/PeiMain.inf 321 322## 323# PEI Phase RAW Data files. 324## 325FILE FREEFORM = PCD(gEfiQuarkNcSocIdTokenSpaceGuid.PcdQuarkMicrocodeFile) { 326 SECTION RAW = QuarkSocBinPkg/QuarkNorthCluster/Binary/QuarkMicrocode/RMU.bin 327} 328 329INF RuleOverride = NORELOC MdeModulePkg/Universal/PCD/Pei/Pcd.inf 330INF QuarkPlatformPkg/Platform/Pei/PlatformConfig/PlatformConfigPei.inf 331INF RuleOverride = NORELOC MdeModulePkg/Universal/ReportStatusCodeRouter/Pei/ReportStatusCodeRouterPei.inf 332INF RuleOverride = NORELOC MdeModulePkg/Universal/StatusCodeHandler/Pei/StatusCodeHandlerPei.inf 333INF RuleOverride = NORELOC MdeModulePkg/Universal/FaultTolerantWritePei/FaultTolerantWritePei.inf 334INF RuleOverride = NORELOC MdeModulePkg/Universal/Variable/Pei/VariablePei.inf 335INF RuleOverride = NORELOC UefiCpuPkg/CpuMpPei/CpuMpPei.inf 336INF RuleOverride = NORELOC MdeModulePkg/Universal/CapsulePei/CapsulePei.inf 337INF RuleOverride = NORELOC QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/MemoryInitPei.inf 338INF RuleOverride = NORELOC QuarkSocPkg/QuarkNorthCluster/Smm/Pei/SmmAccessPei/SmmAccessPei.inf 339INF RuleOverride = NORELOC QuarkSocPkg/QuarkNorthCluster/Smm/Pei/SmmControlPei/SmmControlPei.inf 340INF QuarkPlatformPkg/Platform/Pei/PlatformInit/PlatformEarlyInit.inf 341INF MdeModulePkg/Universal/PcatSingleSegmentPciCfg2Pei/PcatSingleSegmentPciCfg2Pei.inf 342INF MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf 343INF UefiCpuPkg/PiSmmCommunication/PiSmmCommunicationPei.inf 344INF UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf 345 346FILE FV_IMAGE = 1E9D7604-EF45-46a0-BD8A-71AC78C17AC1 { 347 SECTION PEI_DEPEX_EXP = {gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiBootInRecoveryModePpiGuid} 348 SECTION GUIDED A31280AD-481E-41B6-95E8-127F4C984779 { # TIANO COMPRESS GUID 349 SECTION FV_IMAGE = FVRECOVERY_COMPONENTS 350 } 351} 352 353################################################################################ 354# 355# FV Section 356# 357# [FV] section is used to define what components or modules are placed within a flash 358# device file. This section also defines order the components and modules are positioned 359# within the image. The [FV] section consists of define statements, set statements and 360# module statements. 361# 362################################################################################ 363[FV.FVRECOVERY_COMPONENTS] 364BlockSize = $(FLASH_BLOCKSIZE) 365FvAlignment = 16 #FV alignment and FV attributes setting. 366ERASE_POLARITY = 1 367MEMORY_MAPPED = TRUE 368STICKY_WRITE = TRUE 369LOCK_CAP = TRUE 370LOCK_STATUS = TRUE 371WRITE_DISABLED_CAP = TRUE 372WRITE_ENABLED_CAP = TRUE 373WRITE_STATUS = TRUE 374WRITE_LOCK_CAP = TRUE 375WRITE_LOCK_STATUS = TRUE 376READ_DISABLED_CAP = TRUE 377READ_ENABLED_CAP = TRUE 378READ_STATUS = TRUE 379READ_LOCK_CAP = TRUE 380READ_LOCK_STATUS = TRUE 381 382INF QuarkSocPkg/QuarkSouthCluster/Usb/Common/Pei/UsbPei.inf 383INF MdeModulePkg/Bus/Pci/EhciPei/EhciPei.inf 384INF QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/OhciPei.inf 385INF MdeModulePkg/Bus/Usb/UsbBusPei/UsbBusPei.inf 386INF MdeModulePkg/Bus/Usb/UsbBotPei/UsbBotPei.inf 387INF FatPkg/FatPei/FatPei.inf 388INF MdeModulePkg/Universal/Disk/CdExpressPei/CdExpressPei.inf 389 390################################################################################ 391# 392# FV Section 393# 394# [FV] section is used to define what components or modules are placed within a flash 395# device file. This section also defines order the components and modules are positioned 396# within the image. The [FV] section consists of define statements, set statements and 397# module statements. 398# 399################################################################################ 400[FV.FVMAIN] 401BlockSize = $(FLASH_BLOCKSIZE) 402FvAlignment = 16 403ERASE_POLARITY = 1 404MEMORY_MAPPED = TRUE 405STICKY_WRITE = TRUE 406LOCK_CAP = TRUE 407LOCK_STATUS = TRUE 408WRITE_DISABLED_CAP = TRUE 409WRITE_ENABLED_CAP = TRUE 410WRITE_STATUS = TRUE 411WRITE_LOCK_CAP = TRUE 412WRITE_LOCK_STATUS = TRUE 413READ_DISABLED_CAP = TRUE 414READ_ENABLED_CAP = TRUE 415READ_STATUS = TRUE 416READ_LOCK_CAP = TRUE 417READ_LOCK_STATUS = TRUE 418FvNameGuid = 30D9ED01-38D2-418a-90D5-C561750BF80F 419 420## 421# DXE Phase modules 422## 423INF MdeModulePkg/Core/Dxe/DxeMain.inf 424INF MdeModulePkg/Universal/PCD/Dxe/Pcd.inf 425 426!if $(SOURCE_DEBUG_ENABLE) 427 INF SourceLevelDebugPkg/DebugAgentDxe/DebugAgentDxe.inf 428!endif 429 430# 431# Early SoC / Platform modules 432# 433INF QuarkPlatformPkg/Platform/Dxe/PlatformInit/PlatformInitDxe.inf 434 435## 436# EDK Core modules 437## 438INF UefiCpuPkg/CpuIo2Dxe/CpuIo2Dxe.inf 439INF MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf 440INF MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/StatusCodeHandlerRuntimeDxe.inf 441INF MdeModulePkg/Universal/ReportStatusCodeRouter/Smm/ReportStatusCodeRouterSmm.inf 442INF MdeModulePkg/Universal/StatusCodeHandler/Smm/StatusCodeHandlerSmm.inf 443INF MdeModulePkg/Universal/SectionExtractionDxe/SectionExtractionDxe.inf 444 445INF MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf 446INF UefiCpuPkg/CpuDxe/CpuDxe.inf 447INF MdeModulePkg/Universal/Metronome/Metronome.inf 448INF MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf 449INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf 450INF MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteSmm.inf 451!if $(SECURE_BOOT_ENABLE) 452 INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf 453!endif 454INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmmRuntimeDxe.inf 455INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.inf 456INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf 457INF MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf 458INF MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf 459INF PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/PcatRealTimeClockRuntimeDxe.inf 460INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf 461INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf 462 463# 464# Platform 465# 466INF MdeModulePkg/Universal/BdsDxe/BdsDxe.inf 467INF MdeModulePkg/Application/UiApp/UiApp.inf 468 469INF QuarkPlatformPkg/Pci/Dxe/PciHostBridge/PciHostBridge.inf 470INF QuarkPlatformPkg/Platform/SpiFvbServices/PlatformSpi.inf 471INF QuarkPlatformPkg/Platform/SpiFvbServices/PlatformSmmSpi.inf 472INF QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/QNCInitDxe.inf 473INF PcAtChipsetPkg/HpetTimerDxe/HpetTimerDxe.inf 474INF QuarkSocPkg/QuarkNorthCluster/Smm/Dxe/SmmAccessDxe/SmmAccess.inf 475INF QuarkSocPkg/QuarkNorthCluster/S3Support/Dxe/QncS3Support.inf 476INF QuarkSocPkg/QuarkNorthCluster/Spi/PchSpiRuntime.inf 477INF QuarkSocPkg/QuarkNorthCluster/Spi/PchSpiSmm.inf 478INF QuarkPlatformPkg/Platform/Dxe/Setup/DxePlatform.inf 479 480# 481# ACPI 482# 483INF QuarkPlatformPkg/Platform/Dxe/SaveMemoryConfig/SaveMemoryConfig.inf 484INF MdeModulePkg/Universal/Acpi/S3SaveStateDxe/S3SaveStateDxe.inf 485#INF MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/BootScriptExecutorDxe.inf 486INF QuarkPlatformPkg/Acpi/Dxe/BootScriptExecutorDxe/BootScriptExecutorDxe.inf 487INF MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf 488INF IntelFrameworkModulePkg/Universal/Acpi/AcpiS3SaveDxe/AcpiS3SaveDxe.inf 489INF QuarkPlatformPkg/Acpi/Dxe/AcpiPlatform/AcpiPlatform.inf 490INF RuleOverride = ACPITABLE QuarkPlatformPkg/Acpi/AcpiTables/AcpiTables.inf 491 492# 493# SMM 494# 495INF MdeModulePkg/Core/PiSmmCore/PiSmmIpl.inf 496INF MdeModulePkg/Core/PiSmmCore/PiSmmCore.inf 497INF UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.inf 498INF UefiCpuPkg/CpuIo2Smm/CpuIo2Smm.inf 499INF QuarkSocPkg/QuarkNorthCluster/Smm/Dxe/SmmControlDxe/SmmControlDxe.inf 500INF QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/QNCSmmDispatcher.inf 501INF QuarkPlatformPkg/Acpi/DxeSmm/AcpiSmm/AcpiSmmPlatform.inf 502INF QuarkPlatformPkg/Acpi/DxeSmm/SmmPowerManagement/SmmPowerManagement.inf 503INF MdeModulePkg/Universal/LockBox/SmmLockBox/SmmLockBox.inf 504INF UefiCpuPkg/PiSmmCommunication/PiSmmCommunicationSmm.inf 505 506# 507# SMBIOS 508# 509INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf 510INF QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/SmbiosMiscDxe.inf 511INF QuarkPlatformPkg/Platform/Dxe/MemorySubClass/MemorySubClass.inf 512 513# 514# PCI 515# 516INF QuarkPlatformPkg/Pci/Dxe/PciPlatform/PciPlatform.inf 517INF MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf 518INF QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/IohInitDxe.inf 519!if $(SOURCE_DEBUG_ENABLE) 520!else 521INF MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf 522!endif 523 524# 525# USB 526# 527!if $(PERFORMANCE_ENABLE) 528!else 529INF MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf 530INF QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/OhciDxe.inf 531INF MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf 532INF MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf 533INF MdeModulePkg/Bus/Usb/UsbMouseDxe/UsbMouseDxe.inf 534INF MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf 535!endif 536 537# 538# SDIO 539# 540!if $(PERFORMANCE_ENABLE) 541!else 542INF QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDControllerDxe/SDControllerDxe.inf 543INF QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/SDMediaDeviceDxe.inf 544!endif 545 546# 547# Console 548# 549INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf 550INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf 551INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf 552 553INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf 554INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf 555INF MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf 556INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf 557 558# 559# File System Modules 560# 561!if $(PERFORMANCE_ENABLE) 562INF MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystemDxe.inf 563!else 564INF MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf 565INF MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf 566INF FatPkg/EnhancedFatDxe/Fat.inf 567!endif 568 569################################################################################ 570# 571# FV Section 572# 573# [FV] section is used to define what components or modules are placed within a flash 574# device file. This section also defines order the components and modules are positioned 575# within the image. The [FV] section consists of define statements, set statements and 576# module statements. 577# 578################################################################################ 579[FV.FVMAIN_COMPACT] 580FvAlignment = 16 581ERASE_POLARITY = 1 582MEMORY_MAPPED = TRUE 583STICKY_WRITE = TRUE 584LOCK_CAP = TRUE 585LOCK_STATUS = TRUE 586WRITE_DISABLED_CAP = TRUE 587WRITE_ENABLED_CAP = TRUE 588WRITE_STATUS = TRUE 589WRITE_LOCK_CAP = TRUE 590WRITE_LOCK_STATUS = TRUE 591READ_DISABLED_CAP = TRUE 592READ_ENABLED_CAP = TRUE 593READ_STATUS = TRUE 594READ_LOCK_CAP = TRUE 595READ_LOCK_STATUS = TRUE 596 597FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 { 598 SECTION GUIDED A31280AD-481E-41B6-95E8-127F4C984779 { # TIANO COMPRESS GUID 599 SECTION FV_IMAGE = FVMAIN 600 } 601} 602 603################################################################################ 604# 605# FV Section 606# 607# [FV] section is used to define what components or modules are placed within a flash 608# device file. This section also defines order the components and modules are positioned 609# within the image. The [FV] section consists of define statements, set statements and 610# module statements. 611# 612################################################################################ 613[FV.PAYLOAD] 614BlockSize = $(FLASH_BLOCKSIZE) 615FvAlignment = 16 #FV alignment and FV attributes setting. 616ERASE_POLARITY = 1 617MEMORY_MAPPED = TRUE 618STICKY_WRITE = TRUE 619LOCK_CAP = TRUE 620LOCK_STATUS = TRUE 621WRITE_DISABLED_CAP = TRUE 622WRITE_ENABLED_CAP = TRUE 623WRITE_STATUS = TRUE 624WRITE_LOCK_CAP = TRUE 625WRITE_LOCK_STATUS = TRUE 626READ_DISABLED_CAP = TRUE 627READ_ENABLED_CAP = TRUE 628READ_STATUS = TRUE 629READ_LOCK_CAP = TRUE 630READ_LOCK_STATUS = TRUE 631 632# 633# Shell and Applications 634# 635INF RuleOverride = TIANOCOMPRESSED ShellPkg/Application/Shell/Shell.inf 636!if $(PERFORMANCE_ENABLE) 637INF RuleOverride = TIANOCOMPRESSED PerformancePkg/Dp_App/Dp.inf 638!endif 639 640################################################################################ 641# 642# Rules are use with the [FV] section's module INF type to define 643# how an FFS file is created for a given INF file. The following Rule are the default 644# rules for the different module type. User can add the customized rules to define the 645# content of the FFS file. 646# 647################################################################################ 648[Rule.Common.SEC] 649 FILE SEC = $(NAMED_GUID) RELOCS_STRIPPED { 650 TE TE Align = 8 $(INF_OUTPUT)/$(MODULE_NAME).efi 651 RAW BIN Align = 16 |.com 652 } 653 654[Rule.Common.PEI_CORE] 655 FILE PEI_CORE = $(NAMED_GUID) { 656 TE TE $(INF_OUTPUT)/$(MODULE_NAME).efi 657 UI STRING="$(MODULE_NAME)" Optional 658 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 659 } 660 661[Rule.Common.PEIM.NORELOC] 662 FILE PEIM = $(NAMED_GUID) RELOCS_STRIPPED { 663 PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex 664 TE TE $(INF_OUTPUT)/$(MODULE_NAME).efi 665 UI STRING="$(MODULE_NAME)" Optional 666 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 667 } 668 669[Rule.Common.PEIM] 670 FILE PEIM = $(NAMED_GUID) { 671 PEI_DEPEX PEI_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex 672 TE TE $(INF_OUTPUT)/$(MODULE_NAME).efi 673 UI STRING="$(MODULE_NAME)" Optional 674 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 675 } 676 677[Rule.Common.DXE_CORE] 678 FILE DXE_CORE = $(NAMED_GUID) { 679 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 680 UI STRING="$(MODULE_NAME)" Optional 681 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 682 } 683 684[Rule.Common.UEFI_DRIVER] 685 FILE DRIVER = $(NAMED_GUID) { 686 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex 687 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 688 UI STRING="$(MODULE_NAME)" Optional 689 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 690 } 691 692[Rule.Common.DXE_DRIVER] 693 FILE DRIVER = $(NAMED_GUID) { 694 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex 695 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 696 UI STRING="$(MODULE_NAME)" Optional 697 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 698 } 699 700[Rule.Common.DXE_RUNTIME_DRIVER] 701 FILE DRIVER = $(NAMED_GUID) { 702 DXE_DEPEX DXE_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex 703 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 704 UI STRING="$(MODULE_NAME)" Optional 705 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 706 } 707 708[Rule.Common.DXE_SMM_DRIVER] 709 FILE SMM = $(NAMED_GUID) { 710 SMM_DEPEX SMM_DEPEX Optional $(INF_OUTPUT)/$(MODULE_NAME).depex 711 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 712 UI STRING="$(MODULE_NAME)" Optional 713 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 714 } 715 716[Rule.Common.SMM_CORE] 717 FILE SMM_CORE = $(NAMED_GUID) { 718 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 719 UI STRING="$(MODULE_NAME)" Optional 720 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 721 } 722 723[Rule.Common.UEFI_APPLICATION] 724 FILE APPLICATION = $(NAMED_GUID) { 725 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 726 UI STRING="$(MODULE_NAME)" Optional 727 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 728 } 729 730[Rule.Common.UEFI_APPLICATION.TIANOCOMPRESSED] 731 FILE APPLICATION = $(NAMED_GUID) { 732 UI STRING="$(MODULE_NAME)" Optional 733 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 734 SECTION GUIDED A31280AD-481E-41B6-95E8-127F4C984779 PROCESSING_REQUIRED = TRUE { # TIANO COMPRESS GUID 735 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 736 } 737 } 738 739[Rule.Common.UEFI_APPLICATION.UI] 740 FILE APPLICATION = $(NAMED_GUID) { 741 PE32 PE32 $(INF_OUTPUT)/$(MODULE_NAME).efi 742 UI STRING="Enter Setup" 743 VERSION STRING="$(INF_VERSION)" Optional BUILD_NUM=$(BUILD_NUMBER) 744 } 745 746[Rule.Common.USER_DEFINED.ACPITABLE] 747 FILE FREEFORM = $(NAMED_GUID) { 748 RAW ACPI |.acpi 749 RAW ASL |.aml 750 } 751