]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bhyve/xmsr.c
Sync to HEAD@r272516.
[FreeBSD/FreeBSD.git] / usr.sbin / bhyve / xmsr.c
1 /*-
2  * Copyright (c) 2011 NetApp, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/types.h>
33
34 #include <machine/cpufunc.h>
35 #include <machine/vmm.h>
36 #include <machine/specialreg.h>
37
38 #include <vmmapi.h>
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43
44 #include "xmsr.h"
45
46 static int cpu_vendor_intel, cpu_vendor_amd;
47
48 int
49 emulate_wrmsr(struct vmctx *ctx, int vcpu, uint32_t code, uint64_t val)
50 {
51
52         if (cpu_vendor_intel) {
53                 switch (code) {
54                 case 0xd04:             /* Sandy Bridge uncore PMCs */
55                 case 0xc24:
56                         return (0);
57                 case MSR_BIOS_UPDT_TRIG:
58                         return (0);
59                 case MSR_BIOS_SIGN:
60                         return (0);
61                 default:
62                         break;
63                 }
64         }
65         return (-1);
66 }
67
68 int
69 emulate_rdmsr(struct vmctx *ctx, int vcpu, uint32_t num, uint64_t *val)
70 {
71         int error = 0;
72
73         if (cpu_vendor_intel) {
74                 switch (num) {
75                 case MSR_BIOS_SIGN:
76                 case MSR_IA32_PLATFORM_ID:
77                 case MSR_PKG_ENERGY_STATUS:
78                 case MSR_PP0_ENERGY_STATUS:
79                 case MSR_PP1_ENERGY_STATUS:
80                 case MSR_DRAM_ENERGY_STATUS:
81                         *val = 0;
82                         break;
83                 default:
84                         error = -1;
85                         break;
86                 }
87         }
88         return (error);
89 }
90
91 int
92 init_msr(void)
93 {
94         int error;
95         u_int regs[4];
96         char cpu_vendor[13];
97
98         do_cpuid(0, regs);
99         ((u_int *)&cpu_vendor)[0] = regs[1];
100         ((u_int *)&cpu_vendor)[1] = regs[3];
101         ((u_int *)&cpu_vendor)[2] = regs[2];
102         cpu_vendor[12] = '\0';
103
104         error = 0;
105         if (strcmp(cpu_vendor, "AuthenticAMD") == 0) {
106                 cpu_vendor_amd = 1;
107         } else if (strcmp(cpu_vendor, "GenuineIntel") == 0) {
108                 cpu_vendor_intel = 1;
109         } else {
110                 fprintf(stderr, "Unknown cpu vendor \"%s\"\n", cpu_vendor);
111                 error = -1;
112         }
113         return (error);
114 }