acpi: Add IORT helper functions
[coreboot2.git] / util / intelmetool / msr.h
blob952b0c0a244a1392a0aa6f6c73a060dbbb3af3b2
1 /* intelmetool */
2 /* SPDX-License-Identifier: GPL-2.0-or-later */
4 #include <inttypes.h>
6 #ifndef __DARWIN__
8 #define MSR_BOOTGUARD 0x13A
10 typedef struct {
11 unsigned int ebx;
12 unsigned int edx;
13 unsigned int ecx;
14 } regs_t;
16 extern int msr_bootguard(uint64_t *msr);
17 #endif