blob: a3a50ef3cfdbb212ea5967a7dfac7bfefa3d03d6 [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
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer37f39352009-09-01 10:03:01 +000018 */
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
Stefan Reinauer9018b6e2011-03-14 09:08:27 +000029/* This Darwin support requires DirectHW, which is available at
30 * http://www.coreboot.org/DirectHW
Peter Stuge34b876c2009-11-16 17:29:22 +000031 */
32
Stefan Reinauer37f39352009-09-01 10:03:01 +000033int darwin_probe(const struct sysdef *system)
34{
35#ifdef __DARWIN__
36 return iopl(3) == 0;
37#else
38 return 0;
39#endif
40}
41
42int darwin_open(uint8_t cpu, enum SysModes mode)
43{
Stefan Reinauer84d69f72009-10-05 10:23:36 +000044#ifdef __DARWIN__
Stefan Reinauer37f39352009-09-01 10:03:01 +000045 if (cpu > 0) {
46 fprintf(stderr, "%s: only core 0 is supported on Mac OS X right now.\n", __func__);
47 return 0;
48 }
49 return 1;
Stefan Reinauer84d69f72009-10-05 10:23:36 +000050#else
51 return 0;
52#endif
Stefan Reinauer37f39352009-09-01 10:03:01 +000053}
54
55int darwin_close(uint8_t cpu)
56{
57 return 1;
58}
59
60int darwin_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val)
61{
Stefan Reinauer84d69f72009-10-05 10:23:36 +000062#ifdef __DARWIN__
Stefan Reinauer37f39352009-09-01 10:03:01 +000063 msr_t msr;
64
65 msr = rdmsr(addr);
66
67 val->hi = msr.lo;
68 val->lo = msr.hi;
69 return 1;
Stefan Reinauer84d69f72009-10-05 10:23:36 +000070#else
71 return 0;
72#endif
Stefan Reinauer37f39352009-09-01 10:03:01 +000073}