xref: /freebsd/sys/arm64/vmm/vmm_dev_machdep.c (revision 7937bfbc0ca53fe7cdd0d54414f9296e273a518e)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2011 NetApp, Inc.
5  * Copyright (C) 2015 Mihai Carabas <mihai.carabas@gmail.com>
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29 
30 #include <sys/param.h>
31 #include <sys/kernel.h>
32 #include <sys/conf.h>
33 #include <sys/libkern.h>
34 #include <sys/ioccom.h>
35 #include <sys/mman.h>
36 #include <sys/uio.h>
37 #include <sys/proc.h>
38 
39 #include <vm/vm.h>
40 #include <vm/pmap.h>
41 #include <vm/vm_map.h>
42 
43 #include <machine/machdep.h>
44 #include <machine/vmparam.h>
45 #include <machine/vmm.h>
46 
47 #include <dev/vmm/vmm_dev.h>
48 
49 #include "io/vgic.h"
50 
51 const struct vmmdev_ioctl vmmdev_machdep_ioctls[] = {
52 	VMMDEV_IOCTL(VM_RUN, VMMDEV_IOCTL_LOCK_ONE_VCPU),
53 	VMMDEV_IOCTL(VM_INJECT_EXCEPTION, VMMDEV_IOCTL_LOCK_ONE_VCPU),
54 	VMMDEV_IOCTL(VM_GLA2GPA_NOFAULT, VMMDEV_IOCTL_LOCK_ONE_VCPU),
55 
56 	VMMDEV_IOCTL(VM_ATTACH_VGIC,
57 	    VMMDEV_IOCTL_XLOCK_MEMSEGS | VMMDEV_IOCTL_LOCK_ALL_VCPUS),
58 
59 	VMMDEV_IOCTL(VM_GET_VGIC_VERSION, 0),
60 	VMMDEV_IOCTL(VM_RAISE_MSI, 0),
61 	VMMDEV_IOCTL(VM_ASSERT_IRQ, 0),
62 	VMMDEV_IOCTL(VM_DEASSERT_IRQ, 0),
63 };
64 const size_t vmmdev_machdep_ioctl_count = nitems(vmmdev_machdep_ioctls);
65 
66 int
67 vmmdev_machdep_ioctl(struct vm *vm, struct vcpu *vcpu, u_long cmd, caddr_t data,
68     int fflag, struct thread *td)
69 {
70 	struct vm_run *vmrun;
71 	struct vm_vgic_version *vgv;
72 	struct vm_vgic_descr *vgic;
73 	struct vm_irq *vi;
74 	struct vm_exception *vmexc;
75 	struct vm_gla2gpa *gg;
76 	struct vm_msi *vmsi;
77 	int error;
78 
79 	error = 0;
80 	switch (cmd) {
81 	case VM_RUN: {
82 		struct vm_exit *vme;
83 
84 		vmrun = (struct vm_run *)data;
85 		vme = vm_exitinfo(vcpu);
86 
87 		error = vm_run(vcpu);
88 		if (error != 0)
89 			break;
90 
91 		error = copyout(vme, vmrun->vm_exit, sizeof(*vme));
92 		if (error != 0)
93 			break;
94 		break;
95 	}
96 	case VM_INJECT_EXCEPTION:
97 		vmexc = (struct vm_exception *)data;
98 		error = vm_inject_exception(vcpu, vmexc->esr, vmexc->far);
99 		break;
100 	case VM_GLA2GPA_NOFAULT:
101 		gg = (struct vm_gla2gpa *)data;
102 		error = vm_gla2gpa_nofault(vcpu, &gg->paging, gg->gla,
103 		    gg->prot, &gg->gpa, &gg->fault);
104 		KASSERT(error == 0 || error == EFAULT,
105 		    ("%s: vm_gla2gpa unknown error %d", __func__, error));
106 		break;
107 	case VM_GET_VGIC_VERSION:
108 		vgv = (struct vm_vgic_version *)data;
109 		/* TODO: Query the vgic driver for this */
110 		vgv->version = 3;
111 		vgv->flags = 0;
112 		error = 0;
113 		break;
114 	case VM_ATTACH_VGIC:
115 		vgic = (struct vm_vgic_descr *)data;
116 		error = vm_attach_vgic(vm, vgic);
117 		break;
118 	case VM_RAISE_MSI:
119 		vmsi = (struct vm_msi *)data;
120 		error = vm_raise_msi(vm, vmsi->msg, vmsi->addr, vmsi->bus,
121 		    vmsi->slot, vmsi->func);
122 		break;
123 	case VM_ASSERT_IRQ:
124 		vi = (struct vm_irq *)data;
125 		error = vm_assert_irq(vm, vi->irq);
126 		break;
127 	case VM_DEASSERT_IRQ:
128 		vi = (struct vm_irq *)data;
129 		error = vm_deassert_irq(vm, vi->irq);
130 		break;
131 	default:
132 		error = ENOTTY;
133 		break;
134 	}
135 
136 	return (error);
137 }
138