]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/ResetVector/Ia16/ResetVectorVtf0.asm
OVMF ResetVector: Modify interface with SEC module
[mirror_edk2.git] / OvmfPkg / ResetVector / Ia16 / ResetVectorVtf0.asm
CommitLineData
49ba9447 1;------------------------------------------------------------------------------\r
7a55c43b 2; @file\r
3; First code exectuted by processor after resetting.\r
49ba9447 4;\r
7a55c43b 5; Copyright (c) 2008 - 2009, Intel Corporation\r
49ba9447 6; All rights reserved. This program and the accompanying materials\r
7; are licensed and made available under the terms and conditions of the BSD License\r
8; which accompanies this distribution. The full text of the license may be found at\r
9; http://opensource.org/licenses/bsd-license.php\r
10;\r
11; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13;\r
49ba9447 14;------------------------------------------------------------------------------\r
15\r
7a55c43b 16BITS 16\r
49ba9447 17\r
7a55c43b 18ALIGN 16\r
49ba9447 19\r
7a55c43b 20applicationProcessorEntryPoint:\r
21;\r
22; Application Processors entry point\r
23;\r
24; GenFv generates code aligned on a 4k boundary which will jump to this\r
25; location. (0xffffffe0) This allows the Local APIC Startup IPI to be\r
26; used to wake up the application processors.\r
27;\r
28 jmp short EarlyApInitReal16\r
49ba9447 29\r
7a55c43b 30ALIGN 8\r
49ba9447 31\r
7a55c43b 32 DD 0\r
49ba9447 33\r
34;\r
35; The VTF signature\r
36;\r
37; VTF-0 means that the VTF (Volume Top File) code does not require\r
38; any fixups.\r
39;\r
40vtfSignature:\r
7a55c43b 41 DB 'V', 'T', 'F', 0\r
42\r
43ALIGN 16\r
49ba9447 44\r
7a55c43b 45resetVector:\r
49ba9447 46;\r
47; Reset Vector\r
48;\r
49; This is where the processor will begin execution\r
50;\r
7a55c43b 51 wbinvd\r
52 jmp short EarlyBspInitReal16\r
49ba9447 53\r
7a55c43b 54ALIGN 16\r
49ba9447 55\r
56fourGigabytes:\r
57\r