diff options
author | Andriy Gapon <avg@icyb.net.ua> | 2009-11-28 05:21:42 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-11-28 05:21:42 +0000 |
commit | d80e57c9c8d02181ec53bf2858ca790ee7ce93f8 (patch) | |
tree | 606bd395615c3ecf478fcf1f599381330d5d672f /util/msrtool/msrtool.h | |
parent | 7df17af13bc07888ffe47677db3ce9b93c8e4955 (diff) | |
download | coreboot-d80e57c9c8d02181ec53bf2858ca790ee7ce93f8.tar.xz |
msrtool: Add FreeBSD support using /dev/cpuctl ioctl interface
Signed-off-by: Andriy Gapon <avg@icyb.net.ua>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4965 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/msrtool/msrtool.h')
-rw-r--r-- | util/msrtool/msrtool.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/util/msrtool/msrtool.h b/util/msrtool/msrtool.h index fa37c8507a..c2cd6cb3a8 100644 --- a/util/msrtool/msrtool.h +++ b/util/msrtool/msrtool.h @@ -28,6 +28,10 @@ #define __DARWIN__ #include <DirectIO/darwinio.h> #endif +#if defined(__FreeBSD__) +#include <sys/ioctl.h> +#include <sys/cpuctl.h> +#endif #include <pci/pci.h> #define HEXCHARS "0123456789abcdefABCDEF" @@ -186,6 +190,12 @@ extern int darwin_open(uint8_t cpu, enum SysModes mode); extern int darwin_close(uint8_t cpu); extern int darwin_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val); +/* freebsd.c */ +extern int freebsd_probe(const struct sysdef *system); +extern int freebsd_open(uint8_t cpu, enum SysModes mode); +extern int freebsd_close(uint8_t cpu); +extern int freebsd_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val); + /** target externs **/ /* geodelx.c */ |