mirror of
				https://git.proxmox.com/git/mirror_edk2
				synced 2025-10-30 23:50:23 +00:00 
			
		
		
		
	 804405e7d1
			
		
	
	
		804405e7d1
		
	
	
	
	
		
			
			1. change *.msa to *.inf, and create platform configuration files .dec&.dsc&.fdf to comply with Edk2 build process 2. using PCD mechanism to replace macro. 3. change Sec code to cowork with PI1.0 Pei Core and produce temparory memory ppi. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5380 6f19259b-4bc3-4df7-8a09-765794883524
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*++
 | |
| 
 | |
| Copyright (c) 2006, Intel Corporation                                                         
 | |
| All rights reserved. This program and the accompanying materials                          
 | |
| are licensed and made available under the terms and conditions of the BSD License         
 | |
| which accompanies this distribution.  The full text of the license may be found at        
 | |
| http://opensource.org/licenses/bsd-license.php                                            
 | |
|                                                                                           
 | |
| THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     
 | |
| WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             
 | |
| 
 | |
| Module Name:
 | |
| 
 | |
|  UnixPeiLoadFile.h
 | |
| 
 | |
| Abstract:
 | |
| 
 | |
|   Unix Load File PPI.
 | |
| 
 | |
|   When the PEI core is done it calls the DXE IPL via PPI
 | |
| 
 | |
| --*/
 | |
| 
 | |
| #ifndef __UNIX_PEI_LOAD_FILE_H__
 | |
| #define __UNIX_PEI_LOAD_FILE_H__
 | |
| 
 | |
| #include <UnixDxe.h>
 | |
| 
 | |
| #define UNIX_PEI_LOAD_FILE_GUID \
 | |
|   { \
 | |
|     0xf2f48768, 0x8985, 0x11db, {0xb8, 0xda, 0x00, 0x40, 0xd0, 0x2b, 0x18, 0x35 } \
 | |
|   }
 | |
| 
 | |
| typedef
 | |
| EFI_STATUS
 | |
| (EFIAPI *UNIX_PEI_LOAD_FILE) (
 | |
|   VOID                  *Pe32Data,
 | |
|   EFI_PHYSICAL_ADDRESS  *ImageAddress,
 | |
|   UINT64                *ImageSize,
 | |
|   EFI_PHYSICAL_ADDRESS  *EntryPoint
 | |
|   );
 | |
| 
 | |
| /*++
 | |
| 
 | |
| Routine Description:
 | |
|   Loads and relocates a PE/COFF image into memory.
 | |
| 
 | |
| Arguments:
 | |
|   Pe32Data         - The base address of the PE/COFF file that is to be loaded and relocated
 | |
|   ImageAddress     - The base address of the relocated PE/COFF image
 | |
|   ImageSize        - The size of the relocated PE/COFF image
 | |
|   EntryPoint       - The entry point of the relocated PE/COFF image
 | |
| 
 | |
| Returns:
 | |
|   EFI_SUCCESS   - The file was loaded and relocated
 | |
|   EFI_OUT_OF_RESOURCES - There was not enough memory to load and relocate the PE/COFF file
 | |
| 
 | |
| --*/
 | |
| typedef struct {
 | |
|   UNIX_PEI_LOAD_FILE  PeiLoadFileService;
 | |
| } UNIX_PEI_LOAD_FILE_PPI;
 | |
| 
 | |
| extern EFI_GUID gUnixPeiLoadFilePpiGuid;
 | |
| 
 | |
| #endif
 |