iPXE
msr.h File Reference

Model-specific registers. More...

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
static __attribute__ ((always_inline)) uint64_t rdmsr(unsigned int msr)
 Read model-specific register.

Variables

static uint64_t value

Detailed Description

Model-specific registers.

Definition in file msr.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ __attribute__()

__attribute__ ( (always_inline) )
inlinestatic

Read model-specific register.

Write model-specific register.

Parameters
msrModel-specific register
Return values
valueValue
Parameters
msrModel-specific register
valueValue

Definition at line 18 of file msr.h.

19 {
21
22 __asm__ __volatile__ ( "rdmsr" : "=A" ( value ) : "c" ( msr ) );
23 return value;
24}
pseudo_bit_t value[0x00020]
Definition arbel.h:2
__asm__ __volatile__("call *%9" :"=a"(result), "=c"(discard_ecx), "=d"(discard_edx) :"d"(0), "a"(code), "b"(0), "c"(in_phys), "D"(0), "S"(out_phys), "m"(hypercall))
unsigned long long uint64_t
Definition stdint.h:13
__asm__(".section \".rodata\", \"a\", " PROGBITS "\n\t" "\nprivate_key_data:\n\t" ".size private_key_data, ( . - private_key_data )\n\t" ".equ private_key_len, ( . - private_key_data )\n\t" ".previous\n\t")

References __asm__(), __volatile__(), and value.

Variable Documentation

◆ value

uint64_t value
Initial value:
{
__asm__ __volatile__ ( "wrmsr" : : "c" ( msr ), "A" ( value ) )

Definition at line 33 of file msr.h.