mirror of https://github.com/acidanthera/audk.git
42 lines
1.8 KiB
PHP
42 lines
1.8 KiB
PHP
|
;------------------------------------------------------------------------------ ;
|
||
|
; Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
|
||
|
; 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:
|
||
|
;
|
||
|
; MpEqu.inc
|
||
|
;
|
||
|
; Abstract:
|
||
|
;
|
||
|
; This is the equates file for Multiple Processor support
|
||
|
;
|
||
|
;-------------------------------------------------------------------------------
|
||
|
|
||
|
VacantFlag equ 00h
|
||
|
NotVacantFlag equ 0ffh
|
||
|
|
||
|
CPU_SWITCH_STATE_IDLE equ 0
|
||
|
CPU_SWITCH_STATE_STORED equ 1
|
||
|
CPU_SWITCH_STATE_LOADED equ 2
|
||
|
|
||
|
LockLocation equ (RendezvousFunnelProcEnd - RendezvousFunnelProcStart)
|
||
|
StackStartAddressLocation equ LockLocation + 08h
|
||
|
StackSizeLocation equ LockLocation + 10h
|
||
|
ApProcedureLocation equ LockLocation + 18h
|
||
|
GdtrLocation equ LockLocation + 20h
|
||
|
IdtrLocation equ LockLocation + 2Ah
|
||
|
BufferStartLocation equ LockLocation + 34h
|
||
|
ModeOffsetLocation equ LockLocation + 3Ch
|
||
|
NumApsExecutingLoction equ LockLocation + 44h
|
||
|
CodeSegmentLocation equ LockLocation + 4Ch
|
||
|
DataSegmentLocation equ LockLocation + 54h
|
||
|
Cr3Location equ LockLocation + 5Ch
|
||
|
|
||
|
;-------------------------------------------------------------------------------
|