From 37f3935029cef0616fa36b9c822496e3e51f03ba Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 1 Sep 2009 10:03:01 +0000 Subject: port msrtool to darwin. Signed-off-by: Stefan Reinauer Acked-by: Peter Stuge with minor changes to allow 32bit and 64bit compilation and (I hope), Peter's concerns addressed. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4624 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/msrtool/Makefile.in | 7 +++--- util/msrtool/configure | 2 +- util/msrtool/darwin.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++ util/msrtool/msrtool.c | 1 + util/msrtool/msrtool.h | 11 +++++++++ util/msrtool/sys.c | 15 ++++++++++++ 6 files changed, 92 insertions(+), 5 deletions(-) create mode 100644 util/msrtool/darwin.c (limited to 'util/msrtool') diff --git a/util/msrtool/Makefile.in b/util/msrtool/Makefile.in index 3a6d3a97e3..f20dd9fe1a 100644 --- a/util/msrtool/Makefile.in +++ b/util/msrtool/Makefile.in @@ -27,7 +27,7 @@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ TARGETS = geodelx.o cs5536.o k8.o -SYSTEMS = linux.o +SYSTEMS = linux.o darwin.o OBJS = $(PROGRAM).o msrutils.o sys.o $(SYSTEMS) $(TARGETS) all: $(PROGRAM) @@ -39,9 +39,8 @@ $(PROGRAM).o: $(PROGRAM).c $(CC) $(CFLAGS) -DVERSION='"@VERSION@"' -c $< -o $@ install: $(PROGRAM) - $(INSTALL) $(PROGRAM) $(PREFIX)/sbin - mkdir -p $(PREFIX)/share/man/man8 - $(INSTALL) $(PROGRAM).8 $(PREFIX)/share/man/man8 + mkdir -p $(DESTDIR)$(PREFIX)/sbin + $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin distprep: distclean Makefile.deps diff --git a/util/msrtool/configure b/util/msrtool/configure index 8534a85cc4..ee2d6ccd5d 100755 --- a/util/msrtool/configure +++ b/util/msrtool/configure @@ -155,7 +155,7 @@ CFLAGS=`trycompile "libpci (from pciutils)" "${pc_CFLAGS}" "-I/usr/local/include rm -f .config.c exit 1 } -LDFLAGS=`trylink "libpci (from pciutils)" "${pc_LDFLAGS}" "-lpci -lz" "-L/usr/local/lib -lpci -lz" "-framework IOKit -L/usr/local/lib -lpci -lz"` || { +LDFLAGS=`trylink "libpci (from pciutils)" "${pc_LDFLAGS}" "-lpci -lz" "-L/usr/local/lib -lpci -lz" "-framework DirectIO -lpci -lz"` || { rm -f .config.c .config.o exit 1 } diff --git a/util/msrtool/darwin.c b/util/msrtool/darwin.c new file mode 100644 index 0000000000..bdd169e97a --- /dev/null +++ b/util/msrtool/darwin.c @@ -0,0 +1,61 @@ +/* + * This file is part of msrtool. + * + * Copyright (c) 2009 coresystems GmbH + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include +#include +#include +#include +#include + +#include "msrtool.h" + +int darwin_probe(const struct sysdef *system) +{ +#ifdef __DARWIN__ + return iopl(3) == 0; +#else + return 0; +#endif +} + +int darwin_open(uint8_t cpu, enum SysModes mode) +{ + if (cpu > 0) { + fprintf(stderr, "%s: only core 0 is supported on Mac OS X right now.\n", __func__); + return 0; + } + return 1; +} + +int darwin_close(uint8_t cpu) +{ + return 1; +} + +int darwin_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val) +{ + msr_t msr; + + msr = rdmsr(addr); + + val->hi = msr.lo; + val->lo = msr.hi; + return 1; +} diff --git a/util/msrtool/msrtool.c b/util/msrtool/msrtool.c index 2bb8ded8ba..251da40d99 100644 --- a/util/msrtool/msrtool.c +++ b/util/msrtool/msrtool.c @@ -48,6 +48,7 @@ static struct targetdef alltargets[] = { static struct sysdef allsystems[] = { { "linux", "Linux with /dev/cpu/*/msr", linux_probe, linux_open, linux_close, linux_rdmsr }, + { "darwin", "OS X with DirectIO", darwin_probe, darwin_open, darwin_close, darwin_rdmsr }, { SYSTEM_EOT } }; diff --git a/util/msrtool/msrtool.h b/util/msrtool/msrtool.h index 9fe820dd04..fa37c8507a 100644 --- a/util/msrtool/msrtool.h +++ b/util/msrtool/msrtool.h @@ -2,6 +2,7 @@ * This file is part of msrtool. * * Copyright (c) 2008 Peter Stuge + * Copyright (c) 2009 coresystems GmbH * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -22,6 +23,11 @@ #include #include +#if (defined(__MACH__) && defined(__APPLE__)) +/* DirectIO is available here: http://www.coresystems.de/en/directio */ +#define __DARWIN__ +#include +#endif #include #define HEXCHARS "0123456789abcdefABCDEF" @@ -174,6 +180,11 @@ extern int linux_open(uint8_t cpu, enum SysModes mode); extern int linux_close(uint8_t cpu); extern int linux_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val); +/* darwin.c */ +extern int darwin_probe(const struct sysdef *system); +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); /** target externs **/ diff --git a/util/msrtool/sys.c b/util/msrtool/sys.c index cc2cc4e7c0..f6aded52bc 100644 --- a/util/msrtool/sys.c +++ b/util/msrtool/sys.c @@ -2,6 +2,7 @@ * This file is part of msrtool. * * Copyright (c) 2008 Peter Stuge + * Copyright (c) 2009 coresystems GmbH * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -25,7 +26,18 @@ static struct cpuid_t id; struct cpuid_t *cpuid(void) { uint32_t outeax; + +#if defined(__DARWIN__) && !defined(__LP64__) + asm volatile ( + "pushl %%ebx \n" + "cpuid \n" + "popl %%ebx \n" + : "=a" (outeax) : "a" (1) : "%ecx", "%edx" + ); +#else asm ("cpuid" : "=a" (outeax) : "a" (1) : "%ebx", "%ecx", "%edx"); +#endif + id.stepping = outeax & 0xf; outeax >>= 4; id.model = outeax & 0xf; @@ -40,6 +52,9 @@ struct cpuid_t *cpuid(void) { id.model |= (id.ext_model << 4); id.family += id.ext_family; } + printf_verbose("CPU: family %x, model %x, stepping %x\n", + id.family, id.model, id.stepping); + return &id; } -- cgit v1.2.3