]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/bhyve/xmsr.c
MFC r270326
[FreeBSD/stable/10.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                 case MSR_RAPL_POWER_UNIT:
84                         /*
85                          * Use the default value documented in section
86                          * "RAPL Interfaces" in Intel SDM vol3.
87                          */
88                         *val = 0x000a1003;
89                         break;
90                 default:
91                         error = -1;
92                         break;
93                 }
94         }
95         return (error);
96 }
97
98 int
99 init_msr(void)
100 {
101         int error;
102         u_int regs[4];
103         char cpu_vendor[13];
104
105         do_cpuid(0, regs);
106         ((u_int *)&cpu_vendor)[0] = regs[1];
107         ((u_int *)&cpu_vendor)[1] = regs[3];
108         ((u_int *)&cpu_vendor)[2] = regs[2];
109         cpu_vendor[12] = '\0';
110
111         error = 0;
112         if (strcmp(cpu_vendor, "AuthenticAMD") == 0) {
113                 cpu_vendor_amd = 1;
114         } else if (strcmp(cpu_vendor, "GenuineIntel") == 0) {
115                 cpu_vendor_intel = 1;
116         } else {
117                 fprintf(stderr, "Unknown cpu vendor \"%s\"\n", cpu_vendor);
118                 error = -1;
119         }
120         return (error);
121 }