blob: bdd169e97aef70cddbb6cc55db9e289e7cdd272c [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{
40 if (cpu > 0) {
41 fprintf(stderr, "%s: only core 0 is supported on Mac OS X right now.\n", __func__);
42 return 0;
43 }
44 return 1;
45}
46
47int darwin_close(uint8_t cpu)
48{
49 return 1;
50}
51
52int darwin_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val)
53{
54 msr_t msr;
55
56 msr = rdmsr(addr);
57
58 val->hi = msr.lo;
59 val->lo = msr.hi;
60 return 1;
61}