xref: /illumos-gate/usr/src/cmd/bhyve/vmgenc.c (revision 32640292)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright 2020 Conrad Meyer <cem@FreeBSD.org>.  All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 #include <sys/cdefs.h>
28 
29 #include <sys/param.h>
30 #include <sys/mman.h>
31 #include <sys/uuid.h>
32 
33 #include <assert.h>
34 #include <ctype.h>
35 #include <err.h>
36 #include <errno.h>
37 #include <pthread.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <strings.h>
42 #include <stdbool.h>
43 #include <unistd.h>
44 
45 #include <machine/vmm.h>
46 #include <vmmapi.h>
47 
48 #include "acpi.h"
49 #include "bootrom.h"
50 #include "vmgenc.h"
51 
52 static uint64_t	vmgen_gpa;
53 
54 void
vmgenc_init(struct vmctx * ctx)55 vmgenc_init(struct vmctx *ctx)
56 {
57 	char *region;
58 	int error;
59 
60 	error = bootrom_alloc(ctx, PAGE_SIZE, PROT_READ, 0, &region,
61 	    &vmgen_gpa);
62 	if (error != 0)
63 		errx(4, "%s: bootrom_alloc", __func__);
64 
65 	/*
66 	 * It is basically harmless to always generate a random ID when
67 	 * starting a VM.
68 	 */
69 	error = getentropy(region, sizeof(struct uuid));
70 	if (error == -1)
71 		err(4, "%s: getentropy", __func__);
72 
73 	/* XXX When we have suspend/resume/rollback. */
74 #if 0
75 	acpi_raise_gpe(ctx, GPE_VMGENC);
76 #endif
77 }
78 
79 void
vmgenc_write_dsdt(void)80 vmgenc_write_dsdt(void)
81 {
82 	dsdt_line("");
83 	dsdt_indent(1);
84 	dsdt_line("Scope (_SB)");
85 	dsdt_line("{");
86 
87 	dsdt_line("  Device (GENC)");
88 	dsdt_line("  {");
89 
90 	dsdt_indent(2);
91 	dsdt_line("Name (_CID, \"VM_Gen_Counter\")");
92 	dsdt_line("Method (_HID, 0, NotSerialized)");
93 	dsdt_line("{");
94 	dsdt_line("  Return (\"Bhyve_V_Gen_Counter_V1\")");
95 	dsdt_line("}");
96 	dsdt_line("Name (_UID, 0)");
97 	dsdt_line("Name (_DDN, \"VM_Gen_Counter\")");
98 	dsdt_line("Name (ADDR, Package (0x02)");
99 	dsdt_line("{");
100 	dsdt_line("  0x%08x,", (uint32_t)vmgen_gpa);
101 	dsdt_line("  0x%08x", (uint32_t)(vmgen_gpa >> 32));
102 	dsdt_line("})");
103 
104 	dsdt_unindent(2);
105 	dsdt_line("  }");	/* Device (GENC) */
106 
107 	dsdt_line("}");		/* Scope (_SB) */
108 	dsdt_line("");
109 
110 	dsdt_line("Scope (_GPE)");
111 	dsdt_line("{");
112 	dsdt_line("  Method (_E%02x, 0, NotSerialized)", GPE_VMGENC);
113 	dsdt_line("  {");
114 	dsdt_line("    Notify (\\_SB.GENC, 0x80)");
115 	dsdt_line("  }");
116 	dsdt_line("}");
117 	dsdt_unindent(1);
118 }
119