| #/* |
| # * Copyright (c) 2015-2018, The Linux Foundation. All rights reserved. |
| # * |
| # * Redistribution and use in source and binary forms, with or without |
| # * modification, are permitted provided that the following conditions are |
| # * met: |
| # * * Redistributions of source code must retain the above copyright |
| # * notice, this list of conditions and the following disclaimer. |
| # * * Redistributions in binary form must reproduce the above |
| # * copyright notice, this list of conditions and the following |
| # * disclaimer in the documentation and/or other materials provided |
| # * with the distribution. |
| # * * Neither the name of The Linux Foundation nor the names of its |
| # * contributors may be used to endorse or promote products derived |
| # * from this software without specific prior written permission. |
| # * |
| # * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| # * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| # * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| # * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| # * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| # * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| # * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| # * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| # * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| # * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| # * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| #*/ |
| |
| |
| #/** @file QcomModulePkg.fdf |
| # FLASH layout file for QcomModulePkg. |
| #**/ |
| |
| |
| ################################################################################ |
| # |
| # FD Section |
| # The [FD] Section is made up of the definition statements and a |
| # description of what goes into the Flash Device Image. Each FD section |
| # defines one flash "device" image. A flash device image may be one of |
| # the following: Removable media bootable image (like a boot floppy |
| # image,) an Option ROM image (that would be "flashed" into an add-in |
| # card,) a System "Flash" image (that would be burned into a system's |
| # flash) or an Update ("Capsule") image that will be used to update and |
| # existing system flash. |
| # |
| ################################################################################ |
| |
| |
| [FD.QcomModule_EFI] |
| BaseAddress = 0x80200000|gEmbeddedTokenSpaceGuid.PcdEmbeddedFdBaseAddress #The base address of the FLASH Device. |
| Size = 0x00044000|gEmbeddedTokenSpaceGuid.PcdEmbeddedFdSize #The size in bytes of the FLASH Device |
| ErasePolarity = 1 |
| BlockSize = 0x200 |
| NumBlocks = 0x220 |
| |
| ################################################################################ |
| # |
| # Following are lists of FD Region layout which correspond to the locations of different |
| # images within the flash device. |
| # |
| # Regions must be defined in ascending order and may not overlap. |
| # |
| # A Layout Region start with a eight digit hex offset (leading "0x" required) followed by |
| # the pipe "|" character, followed by the size of the region, also in hex with the leading |
| # "0x" characters. Like: |
| # Offset|Size |
| # PcdOffsetCName|PcdSizeCName |
| # RegionType <FV, DATA, or FILE> |
| # |
| ################################################################################ |
| |
| # 512 bytes of configuration header & 8 bytes of image header |
| 0x00000000|0x00044000 |
| gEmbeddedTokenSpaceGuid.PcdFlashFvMainBase|gEmbeddedTokenSpaceGuid.PcdFlashFvMainSize |
| FV = FVMAIN_COMPACT |
| |
| ################################################################################ |
| # |
| # FV Section |
| # |
| # [FV] section is used to define what components or modules are placed within a flash |
| # device file. This section also defines order the components and modules are positioned |
| # within the image. The [FV] section consists of define statements, set statements and |
| # module statements. |
| # |
| ################################################################################ |
| |
| [FV.FvMain] |
| BlockSize = 0x40 |
| NumBlocks = 0 # This FV gets compressed so make it just big enough |
| FvAlignment = 8 # FV alignment and FV attributes setting. |
| ERASE_POLARITY = 1 |
| MEMORY_MAPPED = TRUE |
| STICKY_WRITE = TRUE |
| LOCK_CAP = TRUE |
| LOCK_STATUS = TRUE |
| WRITE_DISABLED_CAP = TRUE |
| WRITE_ENABLED_CAP = TRUE |
| WRITE_STATUS = TRUE |
| WRITE_LOCK_CAP = TRUE |
| WRITE_LOCK_STATUS = TRUE |
| READ_DISABLED_CAP = TRUE |
| READ_ENABLED_CAP = TRUE |
| READ_STATUS = TRUE |
| READ_LOCK_CAP = TRUE |
| READ_LOCK_STATUS = TRUE |
| FvNameGuid = 046fae99-cf2e-49ed-a6a8-a1488b7e80d3 |
| |
| INF QcomModulePkg/Application/LinuxLoader/LinuxLoader.inf |
| |
| [FV.FVMAIN_COMPACT] |
| FvAlignment = 8 |
| ERASE_POLARITY = 1 |
| MEMORY_MAPPED = TRUE |
| STICKY_WRITE = TRUE |
| LOCK_CAP = TRUE |
| LOCK_STATUS = TRUE |
| WRITE_DISABLED_CAP = TRUE |
| WRITE_ENABLED_CAP = TRUE |
| WRITE_STATUS = TRUE |
| WRITE_LOCK_CAP = TRUE |
| WRITE_LOCK_STATUS = TRUE |
| READ_DISABLED_CAP = TRUE |
| READ_ENABLED_CAP = TRUE |
| READ_STATUS = TRUE |
| READ_LOCK_CAP = TRUE |
| READ_LOCK_STATUS = TRUE |
| |
| FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 { |
| SECTION GUIDED EE4E5898-3914-4259-9D6E-DC7BD79403CF PROCESSING_REQUIRED = TRUE { |
| SECTION FV_IMAGE = FVMAIN |
| } |
| } |
| |
| ################################################################################ |
| # |
| # Rules are use with the [FV] section's module INF type to define |
| # how an FFS file is created for a given INF file. The following Rule are the default |
| # rules for the different module type. User can add the customized rules to define the |
| # content of the FFS file. |
| # |
| ################################################################################ |
| |
| [Rule.Common.SEC] |
| FILE SEC = $(NAMED_GUID) RELOCS_STRIPPED { |
| TE TE Align = 16 |.efi |
| } |
| |
| [Rule.Common.PEI_CORE] |
| FILE PEI_CORE = $(NAMED_GUID) { |
| TE TE |.efi |
| UI STRING ="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.PEIM] |
| FILE PEIM = $(NAMED_GUID) { |
| PEI_DEPEX PEI_DEPEX Optional |.depex |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.PEIM.TIANOCOMPRESSED] |
| FILE PEIM = $(NAMED_GUID) DEBUG_MYTOOLS_IA32 { |
| PEI_DEPEX PEI_DEPEX Optional |.depex |
| GUIDED A31280AD-481E-41B6-95E8-127F4C984779 PROCESSING_REQUIRED = TRUE { |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| } |
| |
| [Rule.Common.DXE_CORE] |
| FILE DXE_CORE = $(NAMED_GUID) { |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.UEFI_DRIVER] |
| FILE DRIVER = $(NAMED_GUID) { |
| DXE_DEPEX DXE_DEPEX Optional |.depex |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.DXE_DRIVER] |
| FILE DRIVER = $(NAMED_GUID) { |
| DXE_DEPEX DXE_DEPEX Optional |.depex |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.DXE_RUNTIME_DRIVER] |
| FILE DRIVER = $(NAMED_GUID) { |
| DXE_DEPEX DXE_DEPEX Optional |.depex |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.DXE_RUNTIME_DRIVER.BINARY] |
| FILE DRIVER = $(NAMED_GUID) { |
| DXE_DEPEX DXE_DEPEX Optional |.depex |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.UEFI_APPLICATION] |
| FILE APPLICATION = $(NAMED_GUID) { |
| UI STRING ="$(MODULE_NAME)" Optional |
| PE32 PE32 |.efi |
| } |
| |
| [Rule.Common.DXE_DRIVER.BINARY] |
| FILE DRIVER = $(NAMED_GUID) { |
| DXE_DEPEX DXE_DEPEX Optional |.depex |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |
| |
| [Rule.Common.UEFI_APPLICATION.BINARY] |
| FILE APPLICATION = $(NAMED_GUID) { |
| DXE_DEPEX DXE_DEPEX Optional |.depex |
| PE32 PE32 |.efi |
| UI STRING="$(MODULE_NAME)" Optional |
| } |