summaryrefslogtreecommitdiff
path: root/Core/EM/TCG2/Common/EMpCallBin.asm
blob: f63c3d70b7962942e0519fb05ba311b174dd9094 (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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
;**********************************************************************
;**********************************************************************
;**                                                                  **
;**        (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/EMpCallBin.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/EMpCallBin.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)
; 
; 13    5/09/12 6:38p Fredericko
; Fix for possible Tcm hang issues during reboot cycles. 
; 
; 12    1/20/12 9:13p Fredericko
; Added code to work around RTC issue when using legacy IO support.
; 
; 11    4/22/11 8:53p Fredericko
; Token to enable stack workaround for binaries that don't return
; properly.
; 
; 10    3/29/11 1:13p 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
; 
; 9     3/28/11 2:22p 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
; 
; 8     5/19/10 5:38p Fredericko
; Included File Header
; Included File Revision History 
; Updated AMI Function Headers
; Code Beautification
; EIP 37653
; 
; 7     4/16/10 10:36a Fredericko
; Function Headers updated
; 
; 6     3/23/10 9:21p Fredericko
; 
; 5     3/23/10 6:56p Fredericko
; 
; 4     3/19/10 4:27p Fredericko
; Modified the way Driver calls into legacy TCG Binary.
; 
; 3     6/02/09 1:12p Fredericko
; 
; 2     5/18/09 6:04p Fredericko
; 
; 1     5/18/09 6:03p Fredericko
; Initial check-in for EMpCallBin.asm for CTPM support infrastructure
;**********************************************************************
;<AMI_FHDR_START>
;
; Name: EMpCallBin.asm  
;
; Description:
;    Contains functions for legacy TCG calls in 32 bit Binaries 
;
;<AMI_FHDR_END>
;**********************************************************************
.code
    INCLUDE token.equ

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

public TPMRTCSave
 TPMRTCSave label dword
    WORD    ?

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     rax
        push     rcx
        push     rdx
        mov      dword ptr [MpLoc],ecx
        mov      word  ptr [MpLoc + 4],dx
        pop      rdx
        pop      rcx
        pop      rax
        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    rbp
        push    rax
        push    rcx
        push    rdx
        mov     rbp,rsp
        cmp     rcx, 04h
        jnz     Empty_Buff
        MOV     rsi,  rdx
Empty_Buff:
        mov     rax, rcx
        push    rcx
        mov     rcx, offset next
IF MKF_Stack_Work_Around
        mov     dword ptr [IP_Offset], ecx
ENDIF
IF MKF_PMBASE_RTC_WKAround
        push     rax
        push     rdx
        mov      dx, MKF_PM_BASE_ADDRESS
        in       ax, dx 
        mov      word ptr [TPMRTCSave],ax
        pop      rdx
        pop      rax
ENDIF
        pop     rcx
        call    fword ptr [MpLoc]
IF MKF_Stack_Work_Around
        db      0eah
IP_Offset:
        dd      0
        dw      038h
ENDIF
next:
IF MKF_PMBASE_RTC_WKAround
        push  rax
        push  rdx
        mov   dx,MKF_PM_BASE_ADDRESS
        in    ax, dx 
        test  ax, dx
        jz    RtcNotSet      
        mov   ax, word ptr [TPMRTCSave]
        and   ax,0FBFEh
        or    ax,0400h
        out   dx, ax
RtcNotSet:
        pop   rdx
        pop   rax
ENDIF
        mov     rsp,rbp
        pop     rdx
        pop     rcx
        pop     rax
        pop     rbp
        ret
TpmDxeCallMPDriver ENDP



TcmIoDelay proc
    push rax
    mov al, 80h
    out 080h, al
    in  al, 080h
    pop rax
    ret
TcmIoDelay 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     rax
        push     rcx
        push     rdx
        push     rsi
        cmp      rcx, 04h
        jnz      Empty_Buff
        MOV      rsi,  rdx
Empty_Buff:
        mov      rax, rcx
        call    TcmIoDelay
        call     fword ptr [MpLoc]
        call    TcmIoDelay
        pop      rsi
        pop      rdx
        pop      rcx
        pop      rax
        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