summaryrefslogtreecommitdiff
path: root/EDK/Foundation/Cpu/Pentium/CpuIA32Lib/IA32/CpuIA32.asm
blob: 2a64c66e37b9a5df5c39fa19e90dbb954aadf40f (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
TITLE   CpuIA32.asm: Assembly code for the IA-32 resources

;*****************************************************************************
;*
;*   Copyright (c) 2004 - 2006, Intel Corporation                                                         
;*   All rights reserved. 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:
;*
;*    CpuIA32.asm
;*  
;*   Abstract:
;*  
;*****************************************************************************

  
  .686P
  .MODEL FLAT,C
  .CODE
  
  INCLUDE IA32Type.inc

  

;------------------------------------------------------------------------------
;  VOID
;  EfiHalt (
;    VOID
;    )
;------------------------------------------------------------------------------
EfiHalt PROC    PUBLIC
    hlt
    ret
EfiHalt ENDP


;------------------------------------------------------------------------------
;  VOID
;  EfiWbinvd (
;    VOID
;    )
;------------------------------------------------------------------------------
EfiWbinvd PROC    PUBLIC
    wbinvd
    ret
EfiWbinvd ENDP


;------------------------------------------------------------------------------
;  VOID
;  EfiInvd (
;    VOID
;    )
;------------------------------------------------------------------------------
EfiInvd PROC    PUBLIC
    invd
    ret
EfiInvd ENDP

;------------------------------------------------------------------------------
;  VOID
;  EfiCpuid (
;    IN   UINT32              RegisterInEax,    
;    OUT  EFI_CPUID_REGISTER  *Reg           OPTIONAL 
;    )
;------------------------------------------------------------------------------
EfiCpuid PROC    PUBLIC RegisterInEax:UINT32, Reg:PTR EFI_CPUID_REGISTER
     pushad
     
     mov    eax, RegisterInEax
     cpuid
     cmp    Reg, 0
     je     _Exit
     mov    edi, DWORD PTR Reg 
     ASSUME edi: PTR EFI_CPUID_REGISTER
     mov    DWORD PTR [edi].RegEax, eax   ; Reg->RegEax
     mov    DWORD PTR [edi].RegEbx, ebx   ; Reg->RegEbx
     mov    DWORD PTR [edi].RegEcx, ecx   ; Reg->RegEcx
     mov    DWORD PTR [edi].RegEdx, edx   ; Reg->RegEdx

_Exit:
     popad
     ret
EfiCpuid  ENDP

;------------------------------------------------------------------------------
;  UINT64
;  EfiReadMsr (
;    IN   UINT32  Index,
;    )
;------------------------------------------------------------------------------
EfiReadMsr PROC    PUBLIC Index:UINT32
    push   ecx
    mov    ecx, Index
    rdmsr
    pop    ecx
    ret
EfiReadMsr  ENDP

;------------------------------------------------------------------------------
;  VOID
;  EfiWriteMsr (
;    IN   UINT32  Index,
;    IN   UINT64  Value
;    )
;------------------------------------------------------------------------------
EfiWriteMsr PROC    PUBLIC Index:UINT32, Value:UINT64
    pushad
    mov    ecx, Index
    mov    eax, DWORD PTR Value[0]
    mov    edx, DWORD PTR Value[4]
    wrmsr            
    popad  
    ret
EfiWriteMsr  ENDP


;------------------------------------------------------------------------------
; UINT64
; EfiReadTsc (
;   VOID
;   );
;------------------------------------------------------------------------------
EfiReadTsc PROC    PUBLIC
    rdtsc
    ret
EfiReadTsc  ENDP

;------------------------------------------------------------------------------
; VOID
; EfiDisableCache (
;   VOID
;   );
;------------------------------------------------------------------------------
EfiDisableCache PROC    PUBLIC
; added a check to see if cache is already disabled. If it is, then skip.
    push  eax
    mov   eax, cr0
    bswap eax
    and   al, 60h
    cmp   al, 60h
    je    @f
    wbinvd
    mov   eax, cr0
    or    eax, 060000000h     
    mov   cr0, eax
@@:
    pop   eax
    ret
EfiDisableCache ENDP

;------------------------------------------------------------------------------
; VOID
; EfiEnableCache (
;   VOID
;   );
;------------------------------------------------------------------------------
EfiEnableCache PROC    PUBLIC
    push  eax
    wbinvd
    mov   eax, cr0
    and   eax, 09fffffffh         
    mov   cr0, eax
    pop   eax
    ret
EfiEnableCache ENDP

;------------------------------------------------------------------------------
; UINT32
; EfiGetEflags (
;   VOID
;   );
;------------------------------------------------------------------------------
EfiGetEflags PROC    PUBLIC
    pushfd
    pop  eax
    ret
EfiGetEflags  ENDP

;------------------------------------------------------------------------------
; VOID
; EfiDisableInterrupts (
;   VOID
;   );
;------------------------------------------------------------------------------
EfiDisableInterrupts PROC    PUBLIC
    cli
    ret
EfiDisableInterrupts  ENDP

;------------------------------------------------------------------------------
; VOID
; EfiEnableInterrupts (
;   VOID
;   );
;------------------------------------------------------------------------------
EfiEnableInterrupts PROC    PUBLIC
    sti
    ret
EfiEnableInterrupts  ENDP
;------------------------------------------------------------------------------
;  VOID
;  EfiCpuidExt (
;    IN   UINT32              RegisterInEax,
;    IN   UINT32              CacheLevel,
;    OUT  EFI_CPUID_REGISTER  *Regs              
;    )
;------------------------------------------------------------------------------
EfiCpuidExt PROC    PUBLIC \
  RegisterInEax:UINT32,    \
  CacheLevel:UINT32,       \
  Regs:PTR EFI_CPUID_REGISTER
     pushad
     
     mov    eax, RegisterInEax
     mov    ecx, CacheLevel
     cpuid
     mov    edi, DWORD PTR Regs 
     ASSUME edi: PTR EFI_CPUID_REGISTER
     mov    DWORD PTR [edi].RegEax, eax   ; Reg->RegEax
     mov    DWORD PTR [edi].RegEbx, ebx   ; Reg->RegEbx
     mov    DWORD PTR [edi].RegEcx, ecx   ; Reg->RegEcx
     mov    DWORD PTR [edi].RegEdx, edx   ; Reg->RegEdx

     popad
     ret
EfiCpuidExt  ENDP
END