blob: 7cd1c7911b99939bc5dbe76a8b2840e08d84ceaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
TITLE CRBSEC.ASM -- Chipset Reference Board SEC initialization
;*************************************************************************
;*************************************************************************
;** **
;** (C)Copyright 1985-2011, American Megatrends, Inc. **
;** **
;** All Rights Reserved. **
;** **
;** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
;** **
;** Phone: (770)-246-8600 **
;** **
;*************************************************************************
;*************************************************************************
;*************************************************************************
; $Header: /Alaska/Projects/Intel/Haswell/LynxPoint_SharkBay-DT_Crb_1AQQW/CRB/CRBSec.ASM 1 2/12/12 10:38p Victortu $
;
; $Revision: 1 $
;
; $Date: 2/12/12 10:38p $
;*************************************************************************
; Revision History
; ----------------
; $Log: /Alaska/Projects/Intel/Haswell/LynxPoint_SharkBay-DT_Crb_1AQQW/CRB/CRBSec.ASM $
;
; 1 2/12/12 10:38p Victortu
; Intel SharkBay CRB initially releases.
;
;*************************************************************************
;<AMI_FHDR_START>
;
; Name: SRBSEC.ASM
;
; Description: Program any workaround or initialization needed before
; enabling Cache as memory in the SEC stage for CRB.
;
;<AMI_FHDR_END>
;*************************************************************************
;---------------------------------------------------------------------------
INCLUDE token.equ
;---------------------------------------------------------------------------
.586P
.XMM
.MODEL SMALL
; Externs
EXTERN SECCRB_EarlyInitEnd:NEAR32
; Define the equates here
;---------------------------------------------------------------------------
; STARTUP_SEG S E G M E N T STARTS
;---------------------------------------------------------------------------
STARTUP_SEG SEGMENT PARA PUBLIC 'CODE' USE32
;<AMI_PHDR_START>
;----------------------------------------------------------------------------
;
; Procedure: SECCRB_EarlyInit
;
; Description: This routine initializes CRB for PEI preparation
;
; Input: ESP BIST Info
; EBP Reset ID (EDX at reset)
; Stack not available
;
; Output: None
;
; Modified: All, except EBP and ESP
;
; Notes: NBSEC & SBSEC initialization is done at this point.
;----------------------------------------------------------------------------
;<AMI_PHDR_END>
SECCRB_EarlyInit PROC PUBLIC
jmp SECCRB_EarlyInitEnd
SECCRB_EarlyInit ENDP
;---------------------------------------------------------------------------
; STARTUP_SEG S E G M E N T ENDS
;---------------------------------------------------------------------------
STARTUP_SEG ENDS
END
;*************************************************************************
;*************************************************************************
;** **
;** (C)Copyright 1985-2011, American Megatrends, Inc. **
;** **
;** All Rights Reserved. **
;** **
;** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
;** **
;** Phone: (770)-246-8600 **
;** **
;*************************************************************************
;*************************************************************************
|