port msrtool to darwin.
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
This commit is contained in:
parent
e95eb616cc
commit
37f3935029
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
@ -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
|
||||
|
@ -22,6 +23,11 @@
|
|||
|
||||
#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 **/
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue