blob: 4641e8ec3b5f37ddb796dc99ae5ec684d1c234ec [file] [log] [blame]
Peter Stuge33fefca2009-01-26 01:33:02 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Peter Stuge <peter@stuge.se>
Stefan Reinauer8fa64812009-08-12 09:27:45 +00005 * Copyright (C) 2009 coresystems GmbH
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +00006 * Copyright (C) 2010 Carl-Daniel Hailfinger
Rudolf Marek03ae5c12010-03-16 23:59:19 +00007 * Copyright (C) 2010 Rudolf Marek <r.marek@assembler.cz>
Peter Stuge33fefca2009-01-26 01:33:02 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
Uwe Hermann7b2969b2009-04-15 10:52:49 +000022
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +000023#include <unistd.h>
24#include <stdio.h>
Stefan Reinauer0593f212009-01-26 01:10:48 +000025#include <stdlib.h>
Stefan Reinauer8fa64812009-08-12 09:27:45 +000026#include <string.h>
Stefan Reinauer0593f212009-01-26 01:10:48 +000027#include "flash.h"
28
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000029/* Do we need any file access or ioctl for physmap or MSR? */
Patrick Georgia9095a92010-09-30 17:03:32 +000030#if !defined(__DJGPP__) && !defined(__LIBPAYLOAD__)
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000031#include <sys/stat.h>
32#include <fcntl.h>
33#include <errno.h>
34#endif
35
Rudolf Marek03ae5c12010-03-16 23:59:19 +000036#ifdef __DJGPP__
37#include <dpmi.h>
Rudolf Marek837d8102010-04-25 22:47:50 +000038#include <sys/nearptr.h>
Rudolf Marek03ae5c12010-03-16 23:59:19 +000039
40#define MEM_DEV "dpmi"
41
Rudolf Marek837d8102010-04-25 22:47:50 +000042static void *realmem_map;
43
44static void *map_first_meg(unsigned long phys_addr, size_t len)
45{
46
47 if (realmem_map) {
48 return realmem_map + phys_addr;
49 }
50
51 realmem_map = valloc(1024 * 1024);
52
53 if (!realmem_map) {
Patrick Georgied7a9642010-09-25 22:53:44 +000054 return ERROR_PTR;
Rudolf Marek837d8102010-04-25 22:47:50 +000055 }
56
57 if (__djgpp_map_physical_memory(realmem_map, (1024 * 1024), 0)) {
Carl-Daniel Hailfinger602de982010-10-05 23:21:51 +000058 free(realmem_map);
59 realmem_map = NULL;
Patrick Georgied7a9642010-09-25 22:53:44 +000060 return ERROR_PTR;
Rudolf Marek837d8102010-04-25 22:47:50 +000061 }
62
63 return realmem_map + phys_addr;
64}
Rudolf Marek03ae5c12010-03-16 23:59:19 +000065
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000066static void *sys_physmap(unsigned long phys_addr, size_t len)
Rudolf Marek03ae5c12010-03-16 23:59:19 +000067{
68 int ret;
69 __dpmi_meminfo mi;
70
Rudolf Marek837d8102010-04-25 22:47:50 +000071 /* enable 4GB limit on DS descriptor */
72 if (!__djgpp_nearptr_enable()) {
Patrick Georgied7a9642010-09-25 22:53:44 +000073 return ERROR_PTR;
Rudolf Marek837d8102010-04-25 22:47:50 +000074 }
75
76 if ((phys_addr + len - 1) < (1024 * 1024)) {
77 /* we need to use another method to map first 1MB */
78 return map_first_meg(phys_addr, len);
Rudolf Marek03ae5c12010-03-16 23:59:19 +000079 }
80
81 mi.address = phys_addr;
82 mi.size = len;
83 ret = __dpmi_physical_address_mapping (&mi);
84
85 if (ret != 0) {
Patrick Georgied7a9642010-09-25 22:53:44 +000086 return ERROR_PTR;
Rudolf Marek03ae5c12010-03-16 23:59:19 +000087 }
88
Rudolf Marek837d8102010-04-25 22:47:50 +000089 return (void *) mi.address + __djgpp_conventional_base;
Rudolf Marek03ae5c12010-03-16 23:59:19 +000090}
91
92#define sys_physmap_rw_uncached sys_physmap
Rudolf Marek837d8102010-04-25 22:47:50 +000093#define sys_physmap_ro_cached sys_physmap
Rudolf Marek03ae5c12010-03-16 23:59:19 +000094
95void physunmap(void *virt_addr, size_t len)
96{
97 __dpmi_meminfo mi;
98
Carl-Daniel Hailfinger602de982010-10-05 23:21:51 +000099 /* There is no known way to unmap the first 1 MB. The DPMI server will
100 * do this for us on exit.
101 */
Rudolf Marek837d8102010-04-25 22:47:50 +0000102 if ((virt_addr >= realmem_map) && ((virt_addr + len) <= (realmem_map + (1024 * 1024)))) {
Rudolf Marek03ae5c12010-03-16 23:59:19 +0000103 return;
104 }
105
106 mi.address = (unsigned long) virt_addr;
107 __dpmi_free_physical_address_mapping(&mi);
108}
109
Patrick Georgia9095a92010-09-30 17:03:32 +0000110#elif defined(__LIBPAYLOAD__)
111#include <arch/virtual.h>
112
113#define MEM_DEV ""
114
115void *sys_physmap(unsigned long phys_addr, size_t len)
116{
117 return (void*)phys_to_virt(phys_addr);
118}
119
120#define sys_physmap_rw_uncached sys_physmap
121#define sys_physmap_ro_cached sys_physmap
122
123void physunmap(void *virt_addr, size_t len)
124{
125}
126
127int setup_cpu_msr(int cpu)
128{
129 return 0;
130}
131
132void cleanup_cpu_msr(void)
133{
134}
Rudolf Marek03ae5c12010-03-16 23:59:19 +0000135#elif defined(__DARWIN__)
136
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000137#define MEM_DEV "DirectIO"
138
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000139static void *sys_physmap(unsigned long phys_addr, size_t len)
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000140{
Patrick Georgied7a9642010-09-25 22:53:44 +0000141 /* The short form of ?: is a GNU extension.
142 * FIXME: map_physical returns NULL both for errors and for success
143 * if the region is mapped at virtual address zero. If in doubt, report
144 * an error until a better interface exists.
145 */
146 return map_physical(phys_addr, len) ? : ERROR_PTR;
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000147}
148
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000149/* The OS X driver does not differentiate between mapping types. */
150#define sys_physmap_rw_uncached sys_physmap
151#define sys_physmap_ro_cached sys_physmap
152
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000153void physunmap(void *virt_addr, size_t len)
154{
155 unmap_physical(virt_addr, len);
156}
157
158#else
159#include <sys/mman.h>
160
Stefan Reinauer0593f212009-01-26 01:10:48 +0000161#if defined (__sun) && (defined(__i386) || defined(__amd64))
162# define MEM_DEV "/dev/xsvc"
163#else
164# define MEM_DEV "/dev/mem"
165#endif
166
167static int fd_mem = -1;
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000168static int fd_mem_cached = -1;
Stefan Reinauer0593f212009-01-26 01:10:48 +0000169
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000170/* For MMIO access. Must be uncached, doesn't make sense to restrict to ro. */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000171static void *sys_physmap_rw_uncached(unsigned long phys_addr, size_t len)
Stefan Reinauer0593f212009-01-26 01:10:48 +0000172{
173 void *virt_addr;
174
175 if (-1 == fd_mem) {
176 /* Open the memory device UNCACHED. Important for MMIO. */
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000177 if (-1 == (fd_mem = open(MEM_DEV, O_RDWR | O_SYNC))) {
Stefan Reinauer0593f212009-01-26 01:10:48 +0000178 perror("Critical error: open(" MEM_DEV ")");
Peter Stuge43438ba2009-01-26 02:04:19 +0000179 exit(2);
Stefan Reinauer0593f212009-01-26 01:10:48 +0000180 }
181 }
182
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000183 virt_addr = mmap(0, len, PROT_WRITE | PROT_READ, MAP_SHARED,
184 fd_mem, (off_t)phys_addr);
Patrick Georgied7a9642010-09-25 22:53:44 +0000185 return MAP_FAILED == virt_addr ? ERROR_PTR : virt_addr;
Stefan Reinauer0593f212009-01-26 01:10:48 +0000186}
187
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000188/* For reading DMI/coreboot/whatever tables. We should never write, and we
189 * do not care about caching.
190 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000191static void *sys_physmap_ro_cached(unsigned long phys_addr, size_t len)
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000192{
193 void *virt_addr;
194
195 if (-1 == fd_mem_cached) {
196 /* Open the memory device CACHED. */
197 if (-1 == (fd_mem_cached = open(MEM_DEV, O_RDWR))) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000198 msg_perr("Critical error: open(" MEM_DEV "): %s", strerror(errno));
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000199 exit(2);
200 }
201 }
202
203 virt_addr = mmap(0, len, PROT_READ, MAP_SHARED,
204 fd_mem_cached, (off_t)phys_addr);
Patrick Georgied7a9642010-09-25 22:53:44 +0000205 return MAP_FAILED == virt_addr ? ERROR_PTR : virt_addr;
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000206}
207
Stefan Reinauer0593f212009-01-26 01:10:48 +0000208void physunmap(void *virt_addr, size_t len)
209{
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000210 if (len == 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000211 msg_pspew("Not unmapping zero size at %p\n", virt_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000212 return;
213 }
214
Stefan Reinauer0593f212009-01-26 01:10:48 +0000215 munmap(virt_addr, len);
216}
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000217#endif
Stefan Reinauer0593f212009-01-26 01:10:48 +0000218
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000219#define PHYSMAP_NOFAIL 0
220#define PHYSMAP_MAYFAIL 1
221#define PHYSMAP_RW 0
222#define PHYSMAP_RO 1
223
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000224static void *physmap_common(const char *descr, unsigned long phys_addr, size_t len, int mayfail, int readonly)
Stefan Reinauer0593f212009-01-26 01:10:48 +0000225{
Stephan Guilloux6d08a3e2009-06-23 10:44:36 +0000226 void *virt_addr;
227
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000228 if (len == 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000229 msg_pspew("Not mapping %s, zero size at 0x%08lx.\n",
Uwe Hermanneaefb482009-05-17 22:57:34 +0000230 descr, phys_addr);
Patrick Georgied7a9642010-09-25 22:53:44 +0000231 return ERROR_PTR;
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000232 }
233
234 if ((getpagesize() - 1) & len) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000235 msg_perr("Mapping %s at 0x%08lx, unaligned size 0x%lx.\n",
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000236 descr, phys_addr, (unsigned long)len);
237 }
238
239 if ((getpagesize() - 1) & phys_addr) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000240 msg_perr("Mapping %s, 0x%lx bytes at unaligned 0x%08lx.\n",
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000241 descr, (unsigned long)len, phys_addr);
242 }
243
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000244 if (readonly) {
245 virt_addr = sys_physmap_ro_cached(phys_addr, len);
246 } else {
247 virt_addr = sys_physmap_rw_uncached(phys_addr, len);
248 }
Stefan Reinauer0593f212009-01-26 01:10:48 +0000249
Patrick Georgied7a9642010-09-25 22:53:44 +0000250 if (ERROR_PTR == virt_addr) {
Stefan Reinauer0593f212009-01-26 01:10:48 +0000251 if (NULL == descr)
252 descr = "memory";
Sean Nelson316a29f2010-05-07 20:09:04 +0000253 msg_perr("Error accessing %s, 0x%lx bytes at 0x%08lx\n", descr, (unsigned long)len, phys_addr);
Stefan Reinauer0593f212009-01-26 01:10:48 +0000254 perror(MEM_DEV " mmap failed");
Sean Nelson316a29f2010-05-07 20:09:04 +0000255#ifdef __linux__
Stefan Reinauer0593f212009-01-26 01:10:48 +0000256 if (EINVAL == errno) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000257 msg_perr("In Linux this error can be caused by the CONFIG_NONPROMISC_DEVMEM (<2.6.27),\n");
258 msg_perr("CONFIG_STRICT_DEVMEM (>=2.6.27) and CONFIG_X86_PAT kernel options.\n");
259 msg_perr("Please check if either is enabled in your kernel before reporting a failure.\n");
260 msg_perr("You can override CONFIG_X86_PAT at boot with the nopat kernel parameter but\n");
261 msg_perr("disabling the other option unfortunately requires a kernel recompile. Sorry!\n");
Stefan Reinauer0593f212009-01-26 01:10:48 +0000262 }
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000263#elif defined (__OpenBSD__)
264 msg_perr("Please set securelevel=-1 in /etc/rc.securelevel "
265 "and reboot, or reboot into \n");
266 msg_perr("single user mode.\n");
Sean Nelson316a29f2010-05-07 20:09:04 +0000267#endif
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000268 if (!mayfail)
269 exit(3);
Stefan Reinauer0593f212009-01-26 01:10:48 +0000270 }
271
272 return virt_addr;
273}
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000274
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000275void *physmap(const char *descr, unsigned long phys_addr, size_t len)
276{
277 return physmap_common(descr, phys_addr, len, PHYSMAP_NOFAIL, PHYSMAP_RW);
278}
279
280void *physmap_try_ro(const char *descr, unsigned long phys_addr, size_t len)
281{
282 return physmap_common(descr, phys_addr, len, PHYSMAP_MAYFAIL, PHYSMAP_RO);
283}
284
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000285#if defined(__i386__) || defined(__x86_64__)
286
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000287#ifdef __linux__
288/*
289 * Reading and writing to MSRs, however requires instructions rdmsr/wrmsr,
290 * which are ring0 privileged instructions so only the kernel can do the
291 * read/write. This function, therefore, requires that the msr kernel module
292 * be loaded to access these instructions from user space using device
293 * /dev/cpu/0/msr.
294 */
295
296static int fd_msr = -1;
297
298msr_t rdmsr(int addr)
299{
Stefan Reinauer95e892b2009-09-04 13:57:07 +0000300 uint32_t buf[2];
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000301 msr_t msr = { 0xffffffff, 0xffffffff };
302
303 if (lseek(fd_msr, (off_t) addr, SEEK_SET) == -1) {
304 perror("Could not lseek() to MSR");
305 close(fd_msr);
306 exit(1);
307 }
308
309 if (read(fd_msr, buf, 8) == 8) {
Stefan Reinauer95e892b2009-09-04 13:57:07 +0000310 msr.lo = buf[0];
311 msr.hi = buf[1];
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000312
313 return msr;
314 }
315
316 if (errno != EIO) {
317 // A severe error.
318 perror("Could not read() MSR");
319 close(fd_msr);
320 exit(1);
321 }
322
323 return msr;
324}
325
326int wrmsr(int addr, msr_t msr)
327{
Anti Sullinbe24d812010-05-17 23:19:22 +0000328 uint32_t buf[2];
329 buf[0] = msr.lo;
330 buf[1] = msr.hi;
331
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000332 if (lseek(fd_msr, (off_t) addr, SEEK_SET) == -1) {
333 perror("Could not lseek() to MSR");
334 close(fd_msr);
335 exit(1);
336 }
337
Anti Sullinbe24d812010-05-17 23:19:22 +0000338 if (write(fd_msr, buf, 8) != 8 && errno != EIO) {
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000339 perror("Could not write() MSR");
340 close(fd_msr);
341 exit(1);
342 }
343
344 /* some MSRs must not be written */
345 if (errno == EIO)
346 return -1;
347
348 return 0;
349}
350
351int setup_cpu_msr(int cpu)
352{
353 char msrfilename[64];
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000354 memset(msrfilename, 0, sizeof(msrfilename));
355 snprintf(msrfilename, sizeof(msrfilename), "/dev/cpu/%d/msr", cpu);
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000356
357 if (fd_msr != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000358 msg_pinfo("MSR was already initialized\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000359 return -1;
360 }
361
362 fd_msr = open(msrfilename, O_RDWR);
363
364 if (fd_msr < 0) {
365 perror("Error while opening /dev/cpu/0/msr");
Sean Nelson316a29f2010-05-07 20:09:04 +0000366 msg_pinfo("Did you run 'modprobe msr'?\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000367 return -1;
368 }
369
370 return 0;
371}
372
373void cleanup_cpu_msr(void)
374{
375 if (fd_msr == -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000376 msg_pinfo("No MSR initialized.\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000377 return;
378 }
379
380 close(fd_msr);
381
382 /* Clear MSR file descriptor */
383 fd_msr = -1;
384}
385#else
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000386#if defined(__FreeBSD__) || defined(__DragonFly__)
387#include <sys/ioctl.h>
388
389typedef struct {
390 int msr;
391 uint64_t data;
392} cpu_msr_args_t;
393#define CPU_RDMSR _IOWR('c', 1, cpu_msr_args_t)
394#define CPU_WRMSR _IOWR('c', 2, cpu_msr_args_t)
395
396static int fd_msr = -1;
397
398msr_t rdmsr(int addr)
399{
400 cpu_msr_args_t args;
401
402 msr_t msr = { 0xffffffff, 0xffffffff };
403
404 args.msr = addr;
405
406 if (ioctl(fd_msr, CPU_RDMSR, &args) < 0) {
407 perror("CPU_RDMSR");
408 close(fd_msr);
409 exit(1);
410 }
411
412 msr.lo = args.data & 0xffffffff;
413 msr.hi = args.data >> 32;
414
415 return msr;
416}
417
418int wrmsr(int addr, msr_t msr)
419{
420 cpu_msr_args_t args;
421
422 args.msr = addr;
423 args.data = (((uint64_t)msr.hi) << 32) | msr.lo;
424
425 if (ioctl(fd_msr, CPU_WRMSR, &args) < 0) {
426 perror("CPU_WRMSR");
427 close(fd_msr);
428 exit(1);
429 }
430
431 return 0;
432}
433
434int setup_cpu_msr(int cpu)
435{
436 char msrfilename[64];
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000437 memset(msrfilename, 0, sizeof(msrfilename));
438 snprintf(msrfilename, sizeof(msrfilename), "/dev/cpu%d", cpu);
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000439
440 if (fd_msr != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000441 msg_pinfo("MSR was already initialized\n");
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000442 return -1;
443 }
444
445 fd_msr = open(msrfilename, O_RDWR);
446
447 if (fd_msr < 0) {
448 perror("Error while opening /dev/cpu0");
Sean Nelson316a29f2010-05-07 20:09:04 +0000449 msg_pinfo("Did you install ports/sysutils/devcpu?\n");
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000450 return -1;
451 }
452
453 return 0;
454}
455
456void cleanup_cpu_msr(void)
457{
458 if (fd_msr == -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000459 msg_pinfo("No MSR initialized.\n");
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000460 return;
461 }
462
463 close(fd_msr);
464
465 /* Clear MSR file descriptor */
466 fd_msr = -1;
467}
468
469#else
470
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000471#ifdef __DARWIN__
472int setup_cpu_msr(int cpu)
473{
474 // Always succeed for now
475 return 0;
476}
477
478void cleanup_cpu_msr(void)
479{
480 // Nothing, yet.
481}
Patrick Georgia9095a92010-09-30 17:03:32 +0000482#elif defined(__LIBPAYLOAD__)
483msr_t libpayload_rdmsr(int addr)
484{
485 msr_t msr;
486 unsigned long long val = _rdmsr(addr);
487 msr.lo = val & 0xffffffff;
488 msr.hi = val >> 32;
489 return msr;
490}
491
492int libpayload_wrmsr(int addr, msr_t msr)
493{
494 _wrmsr(addr, msr.lo | ((unsigned long long)msr.hi << 32));
495}
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000496#else
497msr_t rdmsr(int addr)
498{
499 msr_t ret = { 0xffffffff, 0xffffffff };
500
501 return ret;
502}
503
504int wrmsr(int addr, msr_t msr)
505{
506 return -1;
507}
508
509int setup_cpu_msr(int cpu)
510{
Sean Nelson316a29f2010-05-07 20:09:04 +0000511 msg_pinfo("No MSR support for your OS yet.\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000512 return -1;
513}
514
515void cleanup_cpu_msr(void)
516{
517 // Nothing, yet.
518}
519#endif
520#endif
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000521#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000522#else
523/* Does MSR exist on non-x86 architectures? */
524#endif