blob: 011c8d11cd93d30902c2c87cd80b689cb4a0dd2e [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 <sys/types.h>
Stefan Reinauer0593f212009-01-26 01:10:48 +000026#include <stdlib.h>
Stefan Reinauer8fa64812009-08-12 09:27:45 +000027#include <string.h>
Stefan Reinauer0593f212009-01-26 01:10:48 +000028#include "flash.h"
29
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000030/* Do we need any file access or ioctl for physmap or MSR? */
Patrick Georgia9095a92010-09-30 17:03:32 +000031#if !defined(__DJGPP__) && !defined(__LIBPAYLOAD__)
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000032#include <sys/stat.h>
33#include <fcntl.h>
34#include <errno.h>
35#endif
36
Rudolf Marek03ae5c12010-03-16 23:59:19 +000037#ifdef __DJGPP__
38#include <dpmi.h>
Rudolf Marek837d8102010-04-25 22:47:50 +000039#include <sys/nearptr.h>
Rudolf Marek03ae5c12010-03-16 23:59:19 +000040
41#define MEM_DEV "dpmi"
42
Rudolf Marek837d8102010-04-25 22:47:50 +000043static void *realmem_map;
44
45static void *map_first_meg(unsigned long phys_addr, size_t len)
46{
47
48 if (realmem_map) {
49 return realmem_map + phys_addr;
50 }
51
52 realmem_map = valloc(1024 * 1024);
53
54 if (!realmem_map) {
Patrick Georgied7a9642010-09-25 22:53:44 +000055 return ERROR_PTR;
Rudolf Marek837d8102010-04-25 22:47:50 +000056 }
57
58 if (__djgpp_map_physical_memory(realmem_map, (1024 * 1024), 0)) {
Patrick Georgied7a9642010-09-25 22:53:44 +000059 return ERROR_PTR;
Rudolf Marek837d8102010-04-25 22:47:50 +000060 }
61
62 return realmem_map + phys_addr;
63}
Rudolf Marek03ae5c12010-03-16 23:59:19 +000064
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000065static void *sys_physmap(unsigned long phys_addr, size_t len)
Rudolf Marek03ae5c12010-03-16 23:59:19 +000066{
67 int ret;
68 __dpmi_meminfo mi;
69
Rudolf Marek837d8102010-04-25 22:47:50 +000070 /* enable 4GB limit on DS descriptor */
71 if (!__djgpp_nearptr_enable()) {
Patrick Georgied7a9642010-09-25 22:53:44 +000072 return ERROR_PTR;
Rudolf Marek837d8102010-04-25 22:47:50 +000073 }
74
75 if ((phys_addr + len - 1) < (1024 * 1024)) {
76 /* we need to use another method to map first 1MB */
77 return map_first_meg(phys_addr, len);
Rudolf Marek03ae5c12010-03-16 23:59:19 +000078 }
79
80 mi.address = phys_addr;
81 mi.size = len;
82 ret = __dpmi_physical_address_mapping (&mi);
83
84 if (ret != 0) {
Patrick Georgied7a9642010-09-25 22:53:44 +000085 return ERROR_PTR;
Rudolf Marek03ae5c12010-03-16 23:59:19 +000086 }
87
Rudolf Marek837d8102010-04-25 22:47:50 +000088 return (void *) mi.address + __djgpp_conventional_base;
Rudolf Marek03ae5c12010-03-16 23:59:19 +000089}
90
91#define sys_physmap_rw_uncached sys_physmap
Rudolf Marek837d8102010-04-25 22:47:50 +000092#define sys_physmap_ro_cached sys_physmap
Rudolf Marek03ae5c12010-03-16 23:59:19 +000093
94void physunmap(void *virt_addr, size_t len)
95{
96 __dpmi_meminfo mi;
97
Rudolf Marek837d8102010-04-25 22:47:50 +000098 /* we ignore unmaps for our first 1MB */
99 if ((virt_addr >= realmem_map) && ((virt_addr + len) <= (realmem_map + (1024 * 1024)))) {
Rudolf Marek03ae5c12010-03-16 23:59:19 +0000100 return;
101 }
102
103 mi.address = (unsigned long) virt_addr;
104 __dpmi_free_physical_address_mapping(&mi);
105}
106
Patrick Georgia9095a92010-09-30 17:03:32 +0000107#elif defined(__LIBPAYLOAD__)
108#include <arch/virtual.h>
109
110#define MEM_DEV ""
111
112void *sys_physmap(unsigned long phys_addr, size_t len)
113{
114 return (void*)phys_to_virt(phys_addr);
115}
116
117#define sys_physmap_rw_uncached sys_physmap
118#define sys_physmap_ro_cached sys_physmap
119
120void physunmap(void *virt_addr, size_t len)
121{
122}
123
124int setup_cpu_msr(int cpu)
125{
126 return 0;
127}
128
129void cleanup_cpu_msr(void)
130{
131}
Rudolf Marek03ae5c12010-03-16 23:59:19 +0000132#elif defined(__DARWIN__)
133
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000134#include <DirectIO/darwinio.h>
135
136#define MEM_DEV "DirectIO"
137
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000138static void *sys_physmap(unsigned long phys_addr, size_t len)
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000139{
Patrick Georgied7a9642010-09-25 22:53:44 +0000140 /* The short form of ?: is a GNU extension.
141 * FIXME: map_physical returns NULL both for errors and for success
142 * if the region is mapped at virtual address zero. If in doubt, report
143 * an error until a better interface exists.
144 */
145 return map_physical(phys_addr, len) ? : ERROR_PTR;
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000146}
147
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000148/* The OS X driver does not differentiate between mapping types. */
149#define sys_physmap_rw_uncached sys_physmap
150#define sys_physmap_ro_cached sys_physmap
151
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000152void physunmap(void *virt_addr, size_t len)
153{
154 unmap_physical(virt_addr, len);
155}
156
157#else
158#include <sys/mman.h>
159
Stefan Reinauer0593f212009-01-26 01:10:48 +0000160#if defined (__sun) && (defined(__i386) || defined(__amd64))
161# define MEM_DEV "/dev/xsvc"
162#else
163# define MEM_DEV "/dev/mem"
164#endif
165
166static int fd_mem = -1;
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000167static int fd_mem_cached = -1;
Stefan Reinauer0593f212009-01-26 01:10:48 +0000168
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000169/* For MMIO access. Must be uncached, doesn't make sense to restrict to ro. */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000170static void *sys_physmap_rw_uncached(unsigned long phys_addr, size_t len)
Stefan Reinauer0593f212009-01-26 01:10:48 +0000171{
172 void *virt_addr;
173
174 if (-1 == fd_mem) {
175 /* Open the memory device UNCACHED. Important for MMIO. */
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000176 if (-1 == (fd_mem = open(MEM_DEV, O_RDWR | O_SYNC))) {
Stefan Reinauer0593f212009-01-26 01:10:48 +0000177 perror("Critical error: open(" MEM_DEV ")");
Peter Stuge43438ba2009-01-26 02:04:19 +0000178 exit(2);
Stefan Reinauer0593f212009-01-26 01:10:48 +0000179 }
180 }
181
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000182 virt_addr = mmap(0, len, PROT_WRITE | PROT_READ, MAP_SHARED,
183 fd_mem, (off_t)phys_addr);
Patrick Georgied7a9642010-09-25 22:53:44 +0000184 return MAP_FAILED == virt_addr ? ERROR_PTR : virt_addr;
Stefan Reinauer0593f212009-01-26 01:10:48 +0000185}
186
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000187/* For reading DMI/coreboot/whatever tables. We should never write, and we
188 * do not care about caching.
189 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000190static void *sys_physmap_ro_cached(unsigned long phys_addr, size_t len)
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000191{
192 void *virt_addr;
193
194 if (-1 == fd_mem_cached) {
195 /* Open the memory device CACHED. */
196 if (-1 == (fd_mem_cached = open(MEM_DEV, O_RDWR))) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000197 msg_perr("Critical error: open(" MEM_DEV "): %s", strerror(errno));
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000198 exit(2);
199 }
200 }
201
202 virt_addr = mmap(0, len, PROT_READ, MAP_SHARED,
203 fd_mem_cached, (off_t)phys_addr);
Patrick Georgied7a9642010-09-25 22:53:44 +0000204 return MAP_FAILED == virt_addr ? ERROR_PTR : virt_addr;
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000205}
206
Stefan Reinauer0593f212009-01-26 01:10:48 +0000207void physunmap(void *virt_addr, size_t len)
208{
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000209 if (len == 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000210 msg_pspew("Not unmapping zero size at %p\n", virt_addr);
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000211 return;
212 }
213
Stefan Reinauer0593f212009-01-26 01:10:48 +0000214 munmap(virt_addr, len);
215}
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000216#endif
Stefan Reinauer0593f212009-01-26 01:10:48 +0000217
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000218#define PHYSMAP_NOFAIL 0
219#define PHYSMAP_MAYFAIL 1
220#define PHYSMAP_RW 0
221#define PHYSMAP_RO 1
222
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000223static void *physmap_common(const char *descr, unsigned long phys_addr, size_t len, int mayfail, int readonly)
Stefan Reinauer0593f212009-01-26 01:10:48 +0000224{
Stephan Guilloux6d08a3e2009-06-23 10:44:36 +0000225 void *virt_addr;
226
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000227 if (len == 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000228 msg_pspew("Not mapping %s, zero size at 0x%08lx.\n",
Uwe Hermanneaefb482009-05-17 22:57:34 +0000229 descr, phys_addr);
Patrick Georgied7a9642010-09-25 22:53:44 +0000230 return ERROR_PTR;
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000231 }
232
233 if ((getpagesize() - 1) & len) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000234 msg_perr("Mapping %s at 0x%08lx, unaligned size 0x%lx.\n",
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000235 descr, phys_addr, (unsigned long)len);
236 }
237
238 if ((getpagesize() - 1) & phys_addr) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000239 msg_perr("Mapping %s, 0x%lx bytes at unaligned 0x%08lx.\n",
Carl-Daniel Hailfinger1455b2b2009-05-11 14:13:25 +0000240 descr, (unsigned long)len, phys_addr);
241 }
242
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000243 if (readonly) {
244 virt_addr = sys_physmap_ro_cached(phys_addr, len);
245 } else {
246 virt_addr = sys_physmap_rw_uncached(phys_addr, len);
247 }
Stefan Reinauer0593f212009-01-26 01:10:48 +0000248
Patrick Georgied7a9642010-09-25 22:53:44 +0000249 if (ERROR_PTR == virt_addr) {
Stefan Reinauer0593f212009-01-26 01:10:48 +0000250 if (NULL == descr)
251 descr = "memory";
Sean Nelson316a29f2010-05-07 20:09:04 +0000252 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 +0000253 perror(MEM_DEV " mmap failed");
Sean Nelson316a29f2010-05-07 20:09:04 +0000254#ifdef __linux__
Stefan Reinauer0593f212009-01-26 01:10:48 +0000255 if (EINVAL == errno) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000256 msg_perr("In Linux this error can be caused by the CONFIG_NONPROMISC_DEVMEM (<2.6.27),\n");
257 msg_perr("CONFIG_STRICT_DEVMEM (>=2.6.27) and CONFIG_X86_PAT kernel options.\n");
258 msg_perr("Please check if either is enabled in your kernel before reporting a failure.\n");
259 msg_perr("You can override CONFIG_X86_PAT at boot with the nopat kernel parameter but\n");
260 msg_perr("disabling the other option unfortunately requires a kernel recompile. Sorry!\n");
Stefan Reinauer0593f212009-01-26 01:10:48 +0000261 }
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000262#elif defined (__OpenBSD__)
263 msg_perr("Please set securelevel=-1 in /etc/rc.securelevel "
264 "and reboot, or reboot into \n");
265 msg_perr("single user mode.\n");
Sean Nelson316a29f2010-05-07 20:09:04 +0000266#endif
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000267 if (!mayfail)
268 exit(3);
Stefan Reinauer0593f212009-01-26 01:10:48 +0000269 }
270
271 return virt_addr;
272}
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000273
Carl-Daniel Hailfingerbaaffe02010-02-02 11:09:03 +0000274void *physmap(const char *descr, unsigned long phys_addr, size_t len)
275{
276 return physmap_common(descr, phys_addr, len, PHYSMAP_NOFAIL, PHYSMAP_RW);
277}
278
279void *physmap_try_ro(const char *descr, unsigned long phys_addr, size_t len)
280{
281 return physmap_common(descr, phys_addr, len, PHYSMAP_MAYFAIL, PHYSMAP_RO);
282}
283
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000284#if defined(__i386__) || defined(__x86_64__)
285
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000286#ifdef __linux__
287/*
288 * Reading and writing to MSRs, however requires instructions rdmsr/wrmsr,
289 * which are ring0 privileged instructions so only the kernel can do the
290 * read/write. This function, therefore, requires that the msr kernel module
291 * be loaded to access these instructions from user space using device
292 * /dev/cpu/0/msr.
293 */
294
295static int fd_msr = -1;
296
297msr_t rdmsr(int addr)
298{
Stefan Reinauer95e892b2009-09-04 13:57:07 +0000299 uint32_t buf[2];
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000300 msr_t msr = { 0xffffffff, 0xffffffff };
301
302 if (lseek(fd_msr, (off_t) addr, SEEK_SET) == -1) {
303 perror("Could not lseek() to MSR");
304 close(fd_msr);
305 exit(1);
306 }
307
308 if (read(fd_msr, buf, 8) == 8) {
Stefan Reinauer95e892b2009-09-04 13:57:07 +0000309 msr.lo = buf[0];
310 msr.hi = buf[1];
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000311
312 return msr;
313 }
314
315 if (errno != EIO) {
316 // A severe error.
317 perror("Could not read() MSR");
318 close(fd_msr);
319 exit(1);
320 }
321
322 return msr;
323}
324
325int wrmsr(int addr, msr_t msr)
326{
Anti Sullinbe24d812010-05-17 23:19:22 +0000327 uint32_t buf[2];
328 buf[0] = msr.lo;
329 buf[1] = msr.hi;
330
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000331 if (lseek(fd_msr, (off_t) addr, SEEK_SET) == -1) {
332 perror("Could not lseek() to MSR");
333 close(fd_msr);
334 exit(1);
335 }
336
Anti Sullinbe24d812010-05-17 23:19:22 +0000337 if (write(fd_msr, buf, 8) != 8 && errno != EIO) {
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000338 perror("Could not write() MSR");
339 close(fd_msr);
340 exit(1);
341 }
342
343 /* some MSRs must not be written */
344 if (errno == EIO)
345 return -1;
346
347 return 0;
348}
349
350int setup_cpu_msr(int cpu)
351{
352 char msrfilename[64];
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000353 memset(msrfilename, 0, sizeof(msrfilename));
354 snprintf(msrfilename, sizeof(msrfilename), "/dev/cpu/%d/msr", cpu);
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000355
356 if (fd_msr != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000357 msg_pinfo("MSR was already initialized\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000358 return -1;
359 }
360
361 fd_msr = open(msrfilename, O_RDWR);
362
363 if (fd_msr < 0) {
364 perror("Error while opening /dev/cpu/0/msr");
Sean Nelson316a29f2010-05-07 20:09:04 +0000365 msg_pinfo("Did you run 'modprobe msr'?\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000366 return -1;
367 }
368
369 return 0;
370}
371
372void cleanup_cpu_msr(void)
373{
374 if (fd_msr == -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000375 msg_pinfo("No MSR initialized.\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000376 return;
377 }
378
379 close(fd_msr);
380
381 /* Clear MSR file descriptor */
382 fd_msr = -1;
383}
384#else
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000385#if defined(__FreeBSD__) || defined(__DragonFly__)
386#include <sys/ioctl.h>
387
388typedef struct {
389 int msr;
390 uint64_t data;
391} cpu_msr_args_t;
392#define CPU_RDMSR _IOWR('c', 1, cpu_msr_args_t)
393#define CPU_WRMSR _IOWR('c', 2, cpu_msr_args_t)
394
395static int fd_msr = -1;
396
397msr_t rdmsr(int addr)
398{
399 cpu_msr_args_t args;
400
401 msr_t msr = { 0xffffffff, 0xffffffff };
402
403 args.msr = addr;
404
405 if (ioctl(fd_msr, CPU_RDMSR, &args) < 0) {
406 perror("CPU_RDMSR");
407 close(fd_msr);
408 exit(1);
409 }
410
411 msr.lo = args.data & 0xffffffff;
412 msr.hi = args.data >> 32;
413
414 return msr;
415}
416
417int wrmsr(int addr, msr_t msr)
418{
419 cpu_msr_args_t args;
420
421 args.msr = addr;
422 args.data = (((uint64_t)msr.hi) << 32) | msr.lo;
423
424 if (ioctl(fd_msr, CPU_WRMSR, &args) < 0) {
425 perror("CPU_WRMSR");
426 close(fd_msr);
427 exit(1);
428 }
429
430 return 0;
431}
432
433int setup_cpu_msr(int cpu)
434{
435 char msrfilename[64];
Carl-Daniel Hailfinger831e8f42010-05-30 22:24:40 +0000436 memset(msrfilename, 0, sizeof(msrfilename));
437 snprintf(msrfilename, sizeof(msrfilename), "/dev/cpu%d", cpu);
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000438
439 if (fd_msr != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000440 msg_pinfo("MSR was already initialized\n");
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000441 return -1;
442 }
443
444 fd_msr = open(msrfilename, O_RDWR);
445
446 if (fd_msr < 0) {
447 perror("Error while opening /dev/cpu0");
Sean Nelson316a29f2010-05-07 20:09:04 +0000448 msg_pinfo("Did you install ports/sysutils/devcpu?\n");
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000449 return -1;
450 }
451
452 return 0;
453}
454
455void cleanup_cpu_msr(void)
456{
457 if (fd_msr == -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000458 msg_pinfo("No MSR initialized.\n");
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000459 return;
460 }
461
462 close(fd_msr);
463
464 /* Clear MSR file descriptor */
465 fd_msr = -1;
466}
467
468#else
469
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000470#ifdef __DARWIN__
471int setup_cpu_msr(int cpu)
472{
473 // Always succeed for now
474 return 0;
475}
476
477void cleanup_cpu_msr(void)
478{
479 // Nothing, yet.
480}
Patrick Georgia9095a92010-09-30 17:03:32 +0000481#elif defined(__LIBPAYLOAD__)
482msr_t libpayload_rdmsr(int addr)
483{
484 msr_t msr;
485 unsigned long long val = _rdmsr(addr);
486 msr.lo = val & 0xffffffff;
487 msr.hi = val >> 32;
488 return msr;
489}
490
491int libpayload_wrmsr(int addr, msr_t msr)
492{
493 _wrmsr(addr, msr.lo | ((unsigned long long)msr.hi << 32));
494}
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000495#else
496msr_t rdmsr(int addr)
497{
498 msr_t ret = { 0xffffffff, 0xffffffff };
499
500 return ret;
501}
502
503int wrmsr(int addr, msr_t msr)
504{
505 return -1;
506}
507
508int setup_cpu_msr(int cpu)
509{
Sean Nelson316a29f2010-05-07 20:09:04 +0000510 msg_pinfo("No MSR support for your OS yet.\n");
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000511 return -1;
512}
513
514void cleanup_cpu_msr(void)
515{
516 // Nothing, yet.
517}
518#endif
519#endif
Stefan Reinauer173e3ea2009-08-19 10:46:23 +0000520#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000521#else
522/* Does MSR exist on non-x86 architectures? */
523#endif