repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
acpi: Add IORT helper functions
[coreboot2.git]
/
util
/
intelmetool
/
msr.h
blob
952b0c0a244a1392a0aa6f6c73a060dbbb3af3b2
1
/* intelmetool */
2
/* SPDX-License-Identifier: GPL-2.0-or-later */
3
4
#include <inttypes.h>
5
6
#ifndef __DARWIN__
7
8
#define MSR_BOOTGUARD 0x13A
9
10
typedef
struct
{
11
unsigned int
ebx
;
12
unsigned int
edx
;
13
unsigned int
ecx
;
14
}
regs_t
;
15
16
extern
int
msr_bootguard
(
uint64_t
*
msr
);
17
#endif