blob: dc0c3d6cee7f069f4ed719196027f933041bf824 [file] [log] [blame]
Stefan Reinauer37f39352009-09-01 10:03:01 +00001/*
2 * This file is part of msrtool.
3 *
4 * Copyright (c) 2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <sys/types.h>
21#include <sys/stat.h>
22#include <fcntl.h>
23#include <unistd.h>
24#include <string.h>
25#include <errno.h>
26
27#include "msrtool.h"
28
29int darwin_probe(const struct sysdef *system)
30{
31#ifdef __DARWIN__
32 return iopl(3) == 0;
33#else
34 return 0;
35#endif
36}
37
38int darwin_open(uint8_t cpu, enum SysModes mode)
39{
Stefan Reinauer84d69f72009-10-05 10:23:36 +000040#ifdef __DARWIN__
Stefan Reinauer37f39352009-09-01 10:03:01 +000041 if (cpu > 0) {
42 fprintf(stderr, "%s: only core 0 is supported on Mac OS X right now.\n", __func__);
43 return 0;
44 }
45 return 1;
Stefan Reinauer84d69f72009-10-05 10:23:36 +000046#else
47 return 0;
48#endif
Stefan Reinauer37f39352009-09-01 10:03:01 +000049}
50
51int darwin_close(uint8_t cpu)
52{
53 return 1;
54}
55
56int darwin_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val)
57{
Stefan Reinauer84d69f72009-10-05 10:23:36 +000058#ifdef __DARWIN__
Stefan Reinauer37f39352009-09-01 10:03:01 +000059 msr_t msr;
60
61 msr = rdmsr(addr);
62
63 val->hi = msr.lo;
64 val->lo = msr.hi;
65 return 1;
Stefan Reinauer84d69f72009-10-05 10:23:36 +000066#else
67 return 0;
68#endif
Stefan Reinauer37f39352009-09-01 10:03:01 +000069}