]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ia32/ReadMsr64.c
Update the comments.
[mirror_edk2.git] / MdePkg / Library / BaseLib / Ia32 / ReadMsr64.c
1 /** @file
2 AsmReadMsr64 function
3
4 Copyright (c) 2006 - 2007, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 //
16 // Include common header file for this module.
17 //
18
19
20 /**
21 Returns a 64-bit Machine Specific Register(MSR).
22
23 Reads and returns the 64-bit MSR specified by Index. No parameter checking is
24 performed on Index, and some Index values may cause CPU exceptions. The
25 caller must either guarantee that Index is valid, or the caller must set up
26 exception handlers to catch the exceptions. This function is only available
27 on IA-32 and X64.
28
29 @param Index The 32-bit MSR index to read.
30
31 @return The value of the MSR identified by Index.
32
33 **/
34 UINT64
35 EFIAPI
36 AsmReadMsr64 (
37 IN UINT32 Index
38 )
39 {
40 _asm {
41 mov ecx, Index
42 rdmsr
43 }
44 }
45