]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libkvm/kvm_arm.h
cdn-patch: offer option to mount /etc/keys before attaching geli devices
[FreeBSD/FreeBSD.git] / lib / libkvm / kvm_arm.h
1 /*-
2  * Copyright (c) 2015 John H. Baldwin <jhb@FreeBSD.org>
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 THE 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 THE 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  * $FreeBSD$
27  */
28
29 #ifndef __KVM_ARM_H__
30 #define __KVM_ARM_H__
31
32 typedef uint32_t        arm_physaddr_t;
33 typedef uint32_t        arm_pd_entry_t;
34 typedef uint32_t        arm_pt_entry_t;
35
36 #define ARM_PAGE_SHIFT  12
37 #define ARM_PAGE_SIZE   (1 << ARM_PAGE_SHIFT)   /* Page size */
38 #define ARM_PAGE_MASK   (ARM_PAGE_SIZE - 1)
39
40 #define ARM_L1_TABLE_SIZE       0x4000          /* 16K */
41
42 #define ARM_L1_S_SIZE   0x00100000      /* 1M */
43 #define ARM_L1_S_OFFSET (ARM_L1_S_SIZE - 1)
44 #define ARM_L1_S_FRAME  (~ARM_L1_S_OFFSET)
45 #define ARM_L1_S_SHIFT  20
46
47 #define ARM_L2_L_SIZE   0x00010000      /* 64K */
48 #define ARM_L2_L_OFFSET (ARM_L2_L_SIZE - 1)
49 #define ARM_L2_L_FRAME  (~ARM_L2_L_OFFSET)
50 #define ARM_L2_L_SHIFT  16
51
52 #define ARM_L2_S_SIZE   0x00001000      /* 4K */
53 #define ARM_L2_S_OFFSET (ARM_L2_S_SIZE - 1)
54 #define ARM_L2_S_FRAME  (~ARM_L2_S_OFFSET)
55 #define ARM_L2_S_SHIFT  12
56 #define ARM_L2_TEX1     0x00000080
57 #define ARM_PTE2_RO     ARM_L2_TEX1
58 #define ARM_L2_NX       0x00000001
59 #define ARM_PTE2_NX     ARM_L2_NX
60
61 /*
62  * Note: L2_S_PROT_W differs depending on whether the system is generic or
63  *       xscale.  This isn't easily accessible in this context, so use an
64  *       approximation of 'xscale' which is a subset of 'generic'.
65  */
66 #define ARM_L2_AP0(x)   ((x) << 4)
67 #define ARM_AP_W        0x01
68 #define ARM_L2_S_PROT_W (ARM_L2_AP0(ARM_AP_W))
69
70 #define ARM_L1_TYPE_INV 0x00            /* Invalid (fault) */
71 #define ARM_L1_TYPE_C   0x01            /* Coarse L2 */
72 #define ARM_L1_TYPE_S   0x02            /* Section */
73 #define ARM_L1_TYPE_MASK        0x03            /* Mask of type bits */
74
75 #define ARM_L1_S_ADDR_MASK      0xfff00000      /* phys address of section */
76 #define ARM_L1_C_ADDR_MASK      0xfffffc00      /* phys address of L2 Table */
77
78 #define ARM_L2_TYPE_INV 0x00            /* Invalid (fault) */
79 #define ARM_L2_TYPE_L   0x01            /* Large Page - 64k */
80 #define ARM_L2_TYPE_S   0x02            /* Small Page -  4k */
81 #define ARM_L2_TYPE_T   0x03            /* Tiny Page  -  1k - not used */
82 #define ARM_L2_TYPE_MASK        0x03
83
84 #ifdef __arm__
85 #include <machine/acle-compat.h>
86
87 #if __ARM_ARCH >= 6
88 #include <machine/pte-v6.h>
89 #else
90 #include <machine/pte-v4.h>
91 #endif
92
93 _Static_assert(PAGE_SHIFT == ARM_PAGE_SHIFT, "PAGE_SHIFT mismatch");
94 _Static_assert(PAGE_SIZE == ARM_PAGE_SIZE, "PAGE_SIZE mismatch");
95 _Static_assert(PAGE_MASK == ARM_PAGE_MASK, "PAGE_MASK mismatch");
96 _Static_assert(L1_TABLE_SIZE == ARM_L1_TABLE_SIZE, "L1_TABLE_SIZE mismatch");
97 _Static_assert(L1_S_SIZE == ARM_L1_S_SIZE, "L1_S_SIZE mismatch");
98 _Static_assert(L1_S_OFFSET == ARM_L1_S_OFFSET, "L1_S_OFFSET mismatch");
99 _Static_assert(L1_S_FRAME == ARM_L1_S_FRAME, "L1_S_FRAME mismatch");
100 _Static_assert(L1_S_SHIFT == ARM_L1_S_SHIFT, "L1_S_SHIFT mismatch");
101 _Static_assert(L2_L_SIZE == ARM_L2_L_SIZE, "L2_L_SIZE mismatch");
102 _Static_assert(L2_L_OFFSET == ARM_L2_L_OFFSET, "L2_L_OFFSET mismatch");
103 _Static_assert(L2_L_FRAME == ARM_L2_L_FRAME, "L2_L_FRAME mismatch");
104 _Static_assert(L2_L_SHIFT == ARM_L2_L_SHIFT, "L2_L_SHIFT mismatch");
105 _Static_assert(L2_S_SIZE == ARM_L2_S_SIZE, "L2_S_SIZE mismatch");
106 _Static_assert(L2_S_OFFSET == ARM_L2_S_OFFSET, "L2_S_OFFSET mismatch");
107 _Static_assert(L2_S_FRAME == ARM_L2_S_FRAME, "L2_S_FRAME mismatch");
108 _Static_assert(L2_S_SHIFT == ARM_L2_S_SHIFT, "L2_S_SHIFT mismatch");
109 _Static_assert(L1_TYPE_INV == ARM_L1_TYPE_INV, "L1_TYPE_INV mismatch");
110 _Static_assert(L1_TYPE_C == ARM_L1_TYPE_C, "L1_TYPE_C mismatch");
111 _Static_assert(L1_TYPE_S == ARM_L1_TYPE_S, "L1_TYPE_S mismatch");
112 _Static_assert(L1_TYPE_MASK == ARM_L1_TYPE_MASK, "L1_TYPE_MASK mismatch");
113 _Static_assert(L1_S_ADDR_MASK == ARM_L1_S_ADDR_MASK, "L1_S_ADDR_MASK mismatch");
114 _Static_assert(L1_C_ADDR_MASK == ARM_L1_C_ADDR_MASK, "L1_C_ADDR_MASK mismatch");
115 _Static_assert(L2_TYPE_INV == ARM_L2_TYPE_INV, "L2_TYPE_INV mismatch");
116 _Static_assert(L2_TYPE_L == ARM_L2_TYPE_L, "L2_TYPE_L mismatch");
117 _Static_assert(L2_TYPE_S == ARM_L2_TYPE_S, "L2_TYPE_S mismatch");
118 #if __ARM_ARCH < 6
119 _Static_assert(L2_TYPE_T == ARM_L2_TYPE_T, "L2_TYPE_T mismatch");
120 #endif
121 _Static_assert(L2_TYPE_MASK == ARM_L2_TYPE_MASK, "L2_TYPE_MASK mismatch");
122 #endif
123
124 int     _arm_native(kvm_t *);
125
126 #endif /* !__KVM_ARM_H__ */