port msrtool to darwin.
authorStefan Reinauer <stepan@coresystems.de>
Tue, 1 Sep 2009 10:03:01 +0000 (10:03 +0000)
committerStefan Reinauer <stepan@openbios.org>
Tue, 1 Sep 2009 10:03:01 +0000 (10:03 +0000)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
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
util/msrtool/configure
util/msrtool/darwin.c [new file with mode: 0644]
util/msrtool/msrtool.c
util/msrtool/msrtool.h
util/msrtool/sys.c

index 3a6d3a97e387611b49ae09dd051ed86037db341a..f20dd9fe1aa9ca01bda439ca768347269dc3a93b 100644 (file)
@@ -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
 
index 8534a85cc4628bb50feecfe9d75b939180f5c940..ee2d6ccd5dbad3077dd6fcf47a91d2af391b996f 100755 (executable)
@@ -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 (file)
index 0000000..bdd169e
--- /dev/null
@@ -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 <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <string.h>
+#include <errno.h>
+
+#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;
+}
index 2bb8ded8ba51fa7bea946ab4e68d6800fbdcf742..251da40d99fccd8327e3f751ea45f3943c9ad41a 100644 (file)
@@ -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 }
 };
 
index 9fe820dd048b89ade681b3d45e8ced90efcdf125..fa37c8507ad41fd8138122bcb1d2a6c351bc4340 100644 (file)
@@ -2,6 +2,7 @@
  * This file is part of msrtool.
  *
  * Copyright (c) 2008 Peter Stuge <peter@stuge.se>
+ * 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
 
 #include <stdio.h>
 #include <stdint.h>
+#if (defined(__MACH__) && defined(__APPLE__))
+/* DirectIO is available here: http://www.coresystems.de/en/directio */
+#define __DARWIN__
+#include <DirectIO/darwinio.h>
+#endif
 #include <pci/pci.h>
 
 #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 **/
 
index cc2cc4e7c034ecf66e1699687f044176419f7a6b..f6aded52bc4a4f66b830a9b17df34bdacf3d6d06 100644 (file)
@@ -2,6 +2,7 @@
  * This file is part of msrtool.
  *
  * Copyright (c) 2008 Peter Stuge <peter@stuge.se>
+ * 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;
 }