]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseLib/Ia32/CpuId.c
Import some basic libraries instances for Mde Packages.
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / CpuId.c
CommitLineData
e1f414b6 1/** @file\r
2 AsmCpuid function.\r
3\r
4 Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
5 All rights reserved. This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15//\r
16// Include common header file for this module.\r
17//\r
18#include "CommonHeader.h"\r
19\r
20UINT32\r
21EFIAPI\r
22AsmCpuid (\r
23 IN UINT32 Index,\r
24 OUT UINT32 *RegisterEax, OPTIONAL\r
25 OUT UINT32 *RegisterEbx, OPTIONAL\r
26 OUT UINT32 *RegisterEcx, OPTIONAL\r
27 OUT UINT32 *RegisterEdx OPTIONAL\r
28 )\r
29{\r
30 _asm {\r
31 mov eax, Index\r
32 cpuid\r
33 push ecx\r
34 mov ecx, RegisterEax\r
35 jecxz SkipEax\r
36 mov [ecx], eax\r
37SkipEax:\r
38 mov ecx, RegisterEbx\r
39 jecxz SkipEbx\r
40 mov [ecx], ebx\r
41SkipEbx:\r
42 pop eax\r
43 mov ecx, RegisterEcx\r
44 jecxz SkipEcx\r
45 mov [ecx], eax\r
46SkipEcx:\r
47 mov ecx, RegisterEdx\r
48 jecxz SkipEdx\r
49 mov [ecx], edx\r
50SkipEdx:\r
51 mov eax, Index\r
52 }\r
53}\r
54\r