2009-05-27 23:10:18 +02:00
|
|
|
TITLE SecEntry.asm
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
;*
|
2010-04-28 14:43:04 +02:00
|
|
|
;* Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
|
|
|
|
;* This program and the accompanying materials
|
2009-05-27 23:10:18 +02:00
|
|
|
;* 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.
|
|
|
|
;*
|
|
|
|
;* CpuAsm.asm
|
|
|
|
;*
|
|
|
|
;* Abstract:
|
|
|
|
;*
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
2010-08-03 09:41:54 +02:00
|
|
|
#include <Base.h>
|
2009-05-27 23:10:18 +02:00
|
|
|
|
|
|
|
.686
|
|
|
|
.model flat,C
|
|
|
|
.code
|
|
|
|
|
|
|
|
EXTERN SecCoreStartupWithStack:PROC
|
|
|
|
|
|
|
|
;
|
2009-12-17 00:29:17 +01:00
|
|
|
; SecCore Entry Point
|
2009-05-27 23:10:18 +02:00
|
|
|
;
|
2009-12-17 00:29:17 +01:00
|
|
|
; Processor is in flat protected mode
|
2009-05-27 23:10:18 +02:00
|
|
|
;
|
2009-12-17 00:29:17 +01:00
|
|
|
; @param[in] EAX Initial value of the EAX register (BIST: Built-in Self Test)
|
|
|
|
; @param[in] DI 'BP': boot-strap processor, or 'AP': application processor
|
|
|
|
; @param[in] EBP Pointer to the start of the Boot Firmware Volume
|
2009-05-27 23:10:18 +02:00
|
|
|
;
|
2009-12-17 00:29:17 +01:00
|
|
|
; @return None This routine does not return
|
2009-05-27 23:10:18 +02:00
|
|
|
;
|
|
|
|
_ModuleEntryPoint PROC PUBLIC
|
|
|
|
|
|
|
|
;
|
|
|
|
; Load temporary stack top at very low memory. The C code
|
|
|
|
; can reload to a better address.
|
|
|
|
;
|
2010-08-03 09:41:54 +02:00
|
|
|
mov eax, BASE_512KB
|
2009-05-27 23:10:18 +02:00
|
|
|
mov esp, eax
|
|
|
|
nop
|
|
|
|
|
|
|
|
;
|
|
|
|
; Call into C code
|
|
|
|
;
|
|
|
|
push eax
|
|
|
|
push ebp
|
|
|
|
call SecCoreStartupWithStack
|
|
|
|
|
|
|
|
_ModuleEntryPoint ENDP
|
|
|
|
|
|
|
|
END
|