xref: /freebsd/sys/arm/arm/hypervisor-stub.S (revision 1d386b48)
1/*
2 * Copyright (C) 2015 Mihai Carabas <mihai.carabas@gmail.com>
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 AUTHOR AND CONTRIBUTORS ``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 AUTHOR 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
27#include "assym.inc"
28#include <sys/syscall.h>
29#include <machine/asm.h>
30#include <machine/asmacros.h>
31#include <machine/armreg.h>
32#include <machine/sysreg.h>
33#if __ARM_ARCH >= 7
34#if defined(__ARM_ARCH_7VE__) || defined(__clang__)
35.arch_extension virt
36#endif
37
38ASENTRY_NP(hypervisor_stub_vect_install)
39
40	/* Install hypervisor stub vectors. */
41	adr	r0, hypervisor_stub_vect
42	mcr	CP15_HVBAR(r0)
43
44	/* Disable all the traps in the hypervisor. */
45	mov	r0, #0
46	mcr	CP15_HCR(r0)
47	mcr	CP15_HCPTR(r0)
48	mcr	CP15_HSTR(r0)
49	mcr	CP15_HSCTLR(r0)
50
51	/* Don't disable access to perf-mon from PL0,1 and preserve HPMN. */
52	mrc	CP15_HDCR(r0)
53	and	r0, #(ARM_CP15_HDCR_HPMN)
54	/*  Caller implicit instruction barrier in the ERET. */
55	mcr	CP15_HDCR(r0)
56
57	RET
58
59END(hypervisor_stub_vect_install)
60
61ASENTRY_NP(hypervisor_stub_trap)
62	/*
63	 * If the first parameter is -1 than return the
64	 * exception vector (HVBAR), otherwise set it to
65	 * the value of it.
66	 */
67	cmp	r0, #-1
68	mrceq	CP15_HVBAR(r0)
69	mcrne	CP15_HVBAR(r0)
70	ERET
71END(hypervisor_stub_trap)
72
73	.globl hypervisor_stub_vect
74	.align 5
75_C_LABEL(hypervisor_stub_vect):
76	.word 0 /* Reset */
77	.word 0 /* undev */
78	.word 0 /* SMC */
79	.word 0 /* PABT */
80	.word 0 /* DABT */
81	b	hypervisor_stub_trap /* HYP-Mode */
82	.word 0 /* FIQ */
83	.word 0 /* IRQ */
84#endif /* __ARM_ARCH >= 7 */
85
86