Convert AOpen DXPL Plus mainboard to CAR
[coreboot.git] / util / msrtool / darwin.c
blob9f0291c3ceee857362107a0475ba1c6bbb8c58a6
1 /*
2 * This file is part of msrtool.
4 * Copyright (c) 2009 coresystems GmbH
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.
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.
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
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>
27 #include "msrtool.h"
29 /* This Darwin support requires DirectHW, which is available at
30 * http://www.coreboot.org/DirectHW
33 int darwin_probe(const struct sysdef *system)
35 #ifdef __DARWIN__
36 return iopl(3) == 0;
37 #else
38 return 0;
39 #endif
42 int darwin_open(uint8_t cpu, enum SysModes mode)
44 #ifdef __DARWIN__
45 if (cpu > 0) {
46 fprintf(stderr, "%s: only core 0 is supported on Mac OS X right now.\n", __func__);
47 return 0;
49 return 1;
50 #else
51 return 0;
52 #endif
55 int darwin_close(uint8_t cpu)
57 return 1;
60 int darwin_rdmsr(uint8_t cpu, uint32_t addr, struct msr *val)
62 #ifdef __DARWIN__
63 msr_t msr;
65 msr = rdmsr(addr);
67 val->hi = msr.lo;
68 val->lo = msr.hi;
69 return 1;
70 #else
71 return 0;
72 #endif