REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3100 It is not necessary to have a PEI phase in the UEFI payload since no specific PEI task is required. This patch adds a UefiPayloadEntry driver to get UEFI Payload required information from the bootloaders, convert them into a HOB list, load DXE core and transfer control to it. Here is the change details: 1) Removed PEI phase, including Peicore, BlSupportPei, SecCore, etc. 2) Added UefiPayloadEntry driver. this is the only driver before DXE core. 3) Added Pure X64 support, dropped Pure IA32 (Could add later if required) 64bit payload with 32bit entry point is still supported. 4) Use one DSC file UefiPayloadPkg.dsc to support X64 and IA32X64 build. Removed UefiPayloadIa32.dsc and UefiPayloadIa32X64.dsc Tested with SBL and coreboot on QEMU. Signed-off-by: Guo Dong <guo.dong@intel.com> Reviewed-by: Maurice Ma <maurice.ma@intel.com> Reviewed-by: Benjamin You <benjamin.you@intel.com>
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			NASM
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			NASM
		
	
	
	
	
	
| ;/** @file
 | |
| ;
 | |
| ;    IDT vector entry.
 | |
| ;
 | |
| ;  Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR>
 | |
| ;  SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| ;
 | |
| ;**/
 | |
| 
 | |
|     SECTION .text
 | |
| 
 | |
| ;
 | |
| ;------------------------------------------------------------------------------
 | |
| ;  Generic IDT Vector Handlers for the Host.
 | |
| ;
 | |
| ;------------------------------------------------------------------------------
 | |
| 
 | |
| ALIGN   8
 | |
| global ASM_PFX(AsmGetVectorTemplatInfo)
 | |
| global ASM_PFX(AsmVectorFixup)
 | |
| 
 | |
| @VectorTemplateBase:
 | |
|         push  eax
 | |
|         db    0x6a       ; push #VectorNumber
 | |
| @VectorNum:
 | |
|         db    0
 | |
|         mov   eax, CommonInterruptEntry
 | |
|         jmp   eax
 | |
| @VectorTemplateEnd:
 | |
| 
 | |
| global ASM_PFX(AsmGetVectorTemplatInfo)
 | |
| ASM_PFX(AsmGetVectorTemplatInfo):
 | |
|         mov   ecx, [esp + 4]
 | |
|         mov   dword [ecx], @VectorTemplateBase
 | |
|         mov   eax, (@VectorTemplateEnd - @VectorTemplateBase)
 | |
|         ret
 | |
| 
 | |
| global ASM_PFX(AsmVectorFixup)
 | |
| ASM_PFX(AsmVectorFixup):
 | |
|         mov   eax, dword [esp + 8]
 | |
|         mov   ecx, [esp + 4]
 | |
|         mov   [ecx + (@VectorNum - @VectorTemplateBase)], al
 | |
|         ret
 | |
| 
 | |
| ;---------------------------------------;
 | |
| ; CommonInterruptEntry                  ;
 | |
| ;---------------------------------------;
 | |
| ; The follow algorithm is used for the common interrupt routine.
 | |
| 
 | |
| ;
 | |
| ; +---------------------+ <-- 16-byte aligned ensured by processor
 | |
| ; +    Old SS           +
 | |
| ; +---------------------+
 | |
| ; +    Old RSP          +
 | |
| ; +---------------------+
 | |
| ; +    RFlags           +
 | |
| ; +---------------------+
 | |
| ; +    CS               +
 | |
| ; +---------------------+
 | |
| ; +    RIP              +
 | |
| ; +---------------------+
 | |
| ; +    Error Code       +
 | |
| ; +---------------------+
 | |
| ; +    Vector Number    +
 | |
| ; +---------------------+
 | |
| 
 | |
| CommonInterruptEntry:
 | |
|   cli
 | |
| 
 | |
|   jmp $
 | |
| 
 |