david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[x86_64] Add functions to read and write model-specific registers

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2014-07-20 11:10:24 +01:00
parent 945b8de1fd
commit 5888c887a4
1 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,43 @@
#ifndef _IPXE_MSR_H
#define _IPXE_MSR_H
/** @file
*
* Model-specific registers
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
/**
* Read model-specific register
*
* @v msr Model-specific register
* @ret value Value
*/
static inline __attribute__ (( always_inline )) uint64_t
rdmsr ( unsigned int msr ) {
uint32_t high;
uint32_t low;
__asm__ __volatile__ ( "rdmsr" :
"=d" ( high ), "=a" ( low ) : "c" ( msr ) );
return ( ( ( ( uint64_t ) high ) << 32 ) | low );
}
/**
* Write model-specific register
*
* @v msr Model-specific register
* @v value Value
*/
static inline __attribute__ (( always_inline )) void
wrmsr ( unsigned int msr, uint64_t value ) {
uint32_t high = ( value >> 32 );
uint32_t low = ( value >> 0 );
__asm__ __volatile__ ( "wrmsr" : :
"c" ( msr ), "d" ( high ), "a" ( low ) );
}
#endif /* _IPXE_MSR_H */