summaryrefslogtreecommitdiff
path: root/Core/EM/TCG2/Common/EMpCallBin32.asm
blob: bc030eb77530f056f38246fc426a0dec70a84376 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
;**********************************************************************
;**********************************************************************
;**                                                                  **
;**        (C)Copyright 1985-2005, American Megatrends, Inc.         **
;**                                                                  **
;**                       All Rights Reserved.                       **
;**                                                                  **
;**             6145-F Northbelt Pkwy, Norcross, GA 30071            **
;**                                                                  **
;**                       Phone: (770)-246-8600                      **
;**                                                                  **
;**********************************************************************
;**********************************************************************
; $Header: /Alaska/SOURCE/Modules/TCG2/Common/TcgDxe/EMpCallBin32.asm 1     4/21/14 2:16p Fredericko $
;
; $Revision: 1 $
;
; $Date: 4/21/14 2:16p $
;*************************************************************************
;Revision History
; ----------------
; $Log: /Alaska/SOURCE/Modules/TCG2/Common/TcgDxe/EMpCallBin32.asm $
; 
; 1     4/21/14 2:16p Fredericko
; 
; 1     10/08/13 12:03p Fredericko
; Initial Check-In for Tpm-Next module
; 
; 1     7/10/13 5:51p Fredericko
; [TAG]  		EIP120969
; [Category]  	New Feature
; [Description]  	TCG (TPM20)
; 
; 4     4/27/11 3:03p Fredericko
; Changes for working around stack problems when calling into binaries
; that don't return properly.
; 
; 3     3/29/11 1:15p Fredericko
; 
; [TAG]        EIP 54642
; [Category] Improvement
; [Description] 1. Checkin Files related to TCG function override 
; 2. Include TCM and TPM auto detection
; [Files] Affects all TCG files
; 
; 
;**********************************************************************
;<AMI_FHDR_START>
;
; Name: EMpCallBin32.asm  
;
; Description:
;
;
;<AMI_FHDR_END>
;**********************************************************************
.686
.model  flat
.code
    INCLUDE token.equ

;Global variable for MpLoc
    public MpLoc
 MpLoc label dword
    FWORD    ?

TPMTransmitEntryStruct STRUC
    pbInBuf    DD  ? ;[IN] Pointer to input data for the data transfers to TPM
    dwInLen    DD  ? ; [IN] Length of the input data record
    pbOutBuf   DD  0 ; [OUT] Pointer to output buffer for the data from the TPM
    dwOutLen   DD  0 ; [IN/OUT] DWORD to store the length info of the
                     ; output data record.
TPMTransmitEntryStruct ENDS






;<AMI_PHDR_START>
;-----------------------------------------------------------------------------
; 
; Procedure:    Prepare2Thunkproc
; 
; Description: 
; Function to setup location of Mp Driver as a local variable
; 
; Input: 
; ecx - Location of MP Driver
; dx  - Segment for MP Driver 
;
; Output: 
; 
; Modified: 
; 
; Referrals:
; 
; Notes:      
;---------------------------------------------------------------------------
;<AMI_PHDR_END>
_Prepare2Thunkproc proc
        push     ebp
        mov      ebp, esp
        pusha
        mov      ecx, dword ptr [ebp + 08h]
        mov      edx, dword ptr [ebp + 0ch]
        mov      dword ptr [MpLoc],ecx
        mov      word  ptr [MpLoc + 4], dx
        popa
        pop      ebp
        ret
_Prepare2Thunkproc ENDP





;<AMI_PHDR_START>
;-----------------------------------------------------------------------------
; 
; Procedure:    TcgDxeCallMPDriver (TCM_support eq 0)
; 
; Description: 
; Makes a function call into MP Driver
; 
; Input: 
; rcx - Call type: 4-Buffer Transmission call
; rsi - Buffer to be tansmitted
;
; Output: 
; rax - TCG return code
; 
; Modified: 
; 
; Referrals:
; 
; Notes:      
;---------------------------------------------------------------------------
;<AMI_PHDR_END>
_TpmDxeCallMPDriver proc
        push    ebp
        mov     ebp, esp
        pusha
        mov     ecx, dword ptr [ebp + 08h]
        cmp     ecx, 04h
        jnz     Empty_Buff
        mov     esi, dword ptr [ebp + 0ch]
Empty_Buff:
        mov     eax, ecx
        call    fword ptr [MpLoc]
IF MKF_Stack_Work_Around
        pop     ebp     ;balance the stack after call
ENDIF
        popa
        pop     ebp
        ret
_TpmDxeCallMPDriver ENDP




;<AMI_PHDR_START>
;-----------------------------------------------------------------------------
; 
; Procedure:    TcgDxeCallMPDriver (TCM_support eq 1)
; 
; Description: 
; Makes a function call into MP Driver
; 
; Input: 
; rcx - Call type: 4-Buffer Transmission call
; rsi - Buffer to be tansmitted
;
; Output: 
; rax - TCG return code
; 
; Modified: 
; 
; Referrals:
; 
; Notes:      
;---------------------------------------------------------------------------
;<AMI_PHDR_END>
_TcmDxeCallMPDriver proc
        push     ebp
        mov      ebp, esp
        pusha
        mov      ecx, dword ptr [ebp + 08h]
        cmp      ecx, 04h
        jnz      Empty_Buff
        mov      esi, dword ptr [ebp + 0ch]
Empty_Buff:
        mov      eax, ecx
        call     fword ptr [MpLoc]
        popa
        pop      ebp
        ret
_TcmDxeCallMPDriver ENDP





;<AMI_PHDR_START>
;-----------------------------------------------------------------------------
; 
; Procedure:    TcgThunk32
; 
; Description: 
; Go to compatibility mode for MP driver
; 
; Input: 
;
; Output: 
; 
; Modified: 
; 
; Referrals:
; 
; Notes:      
;---------------------------------------------------------------------------
;<AMI_PHDR_END>
_TcgThunk32 proc
_TcgThunk32 ENDP





;<AMI_PHDR_START>
;-----------------------------------------------------------------------------
; 
; Procedure:    TcgThunkSwitchback
; 
; Description: 
; Switch back to 64bit mode
; 
; Input: 
;
; Output: 
; 
; Modified: 
; 
; Referrals:
; 
; Notes:      
;---------------------------------------------------------------------------
;<AMI_PHDR_END>
_TcgThunkSwitchback proc
_TcgThunkSwitchback ENDP
END