RISC-V: KVM: Provide UAPI for Zicboz block size
[linux-2.6-block.git] / arch / riscv / include / uapi / asm / kvm.h
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
3  * Copyright (C) 2019 Western Digital Corporation or its affiliates.
4  *
5  * Authors:
6  *     Anup Patel <anup.patel@wdc.com>
7  */
8
9 #ifndef __LINUX_KVM_RISCV_H
10 #define __LINUX_KVM_RISCV_H
11
12 #ifndef __ASSEMBLY__
13
14 #include <linux/types.h>
15 #include <asm/ptrace.h>
16
17 #define __KVM_HAVE_READONLY_MEM
18
19 #define KVM_COALESCED_MMIO_PAGE_OFFSET 1
20
21 #define KVM_INTERRUPT_SET       -1U
22 #define KVM_INTERRUPT_UNSET     -2U
23
24 /* for KVM_GET_REGS and KVM_SET_REGS */
25 struct kvm_regs {
26 };
27
28 /* for KVM_GET_FPU and KVM_SET_FPU */
29 struct kvm_fpu {
30 };
31
32 /* KVM Debug exit structure */
33 struct kvm_debug_exit_arch {
34 };
35
36 /* for KVM_SET_GUEST_DEBUG */
37 struct kvm_guest_debug_arch {
38 };
39
40 /* definition of registers in kvm_run */
41 struct kvm_sync_regs {
42 };
43
44 /* for KVM_GET_SREGS and KVM_SET_SREGS */
45 struct kvm_sregs {
46 };
47
48 /* CONFIG registers for KVM_GET_ONE_REG and KVM_SET_ONE_REG */
49 struct kvm_riscv_config {
50         unsigned long isa;
51         unsigned long zicbom_block_size;
52         unsigned long mvendorid;
53         unsigned long marchid;
54         unsigned long mimpid;
55         unsigned long zicboz_block_size;
56 };
57
58 /* CORE registers for KVM_GET_ONE_REG and KVM_SET_ONE_REG */
59 struct kvm_riscv_core {
60         struct user_regs_struct regs;
61         unsigned long mode;
62 };
63
64 /* Possible privilege modes for kvm_riscv_core */
65 #define KVM_RISCV_MODE_S        1
66 #define KVM_RISCV_MODE_U        0
67
68 /* CSR registers for KVM_GET_ONE_REG and KVM_SET_ONE_REG */
69 struct kvm_riscv_csr {
70         unsigned long sstatus;
71         unsigned long sie;
72         unsigned long stvec;
73         unsigned long sscratch;
74         unsigned long sepc;
75         unsigned long scause;
76         unsigned long stval;
77         unsigned long sip;
78         unsigned long satp;
79         unsigned long scounteren;
80 };
81
82 /* TIMER registers for KVM_GET_ONE_REG and KVM_SET_ONE_REG */
83 struct kvm_riscv_timer {
84         __u64 frequency;
85         __u64 time;
86         __u64 compare;
87         __u64 state;
88 };
89
90 /*
91  * ISA extension IDs specific to KVM. This is not the same as the host ISA
92  * extension IDs as that is internal to the host and should not be exposed
93  * to the guest. This should always be contiguous to keep the mapping simple
94  * in KVM implementation.
95  */
96 enum KVM_RISCV_ISA_EXT_ID {
97         KVM_RISCV_ISA_EXT_A = 0,
98         KVM_RISCV_ISA_EXT_C,
99         KVM_RISCV_ISA_EXT_D,
100         KVM_RISCV_ISA_EXT_F,
101         KVM_RISCV_ISA_EXT_H,
102         KVM_RISCV_ISA_EXT_I,
103         KVM_RISCV_ISA_EXT_M,
104         KVM_RISCV_ISA_EXT_SVPBMT,
105         KVM_RISCV_ISA_EXT_SSTC,
106         KVM_RISCV_ISA_EXT_SVINVAL,
107         KVM_RISCV_ISA_EXT_ZIHINTPAUSE,
108         KVM_RISCV_ISA_EXT_ZICBOM,
109         KVM_RISCV_ISA_EXT_MAX,
110 };
111
112 /* Possible states for kvm_riscv_timer */
113 #define KVM_RISCV_TIMER_STATE_OFF       0
114 #define KVM_RISCV_TIMER_STATE_ON        1
115
116 #define KVM_REG_SIZE(id)                \
117         (1U << (((id) & KVM_REG_SIZE_MASK) >> KVM_REG_SIZE_SHIFT))
118
119 /* If you need to interpret the index values, here is the key: */
120 #define KVM_REG_RISCV_TYPE_MASK         0x00000000FF000000
121 #define KVM_REG_RISCV_TYPE_SHIFT        24
122
123 /* Config registers are mapped as type 1 */
124 #define KVM_REG_RISCV_CONFIG            (0x01 << KVM_REG_RISCV_TYPE_SHIFT)
125 #define KVM_REG_RISCV_CONFIG_REG(name)  \
126         (offsetof(struct kvm_riscv_config, name) / sizeof(unsigned long))
127
128 /* Core registers are mapped as type 2 */
129 #define KVM_REG_RISCV_CORE              (0x02 << KVM_REG_RISCV_TYPE_SHIFT)
130 #define KVM_REG_RISCV_CORE_REG(name)    \
131                 (offsetof(struct kvm_riscv_core, name) / sizeof(unsigned long))
132
133 /* Control and status registers are mapped as type 3 */
134 #define KVM_REG_RISCV_CSR               (0x03 << KVM_REG_RISCV_TYPE_SHIFT)
135 #define KVM_REG_RISCV_CSR_REG(name)     \
136                 (offsetof(struct kvm_riscv_csr, name) / sizeof(unsigned long))
137
138 /* Timer registers are mapped as type 4 */
139 #define KVM_REG_RISCV_TIMER             (0x04 << KVM_REG_RISCV_TYPE_SHIFT)
140 #define KVM_REG_RISCV_TIMER_REG(name)   \
141                 (offsetof(struct kvm_riscv_timer, name) / sizeof(__u64))
142
143 /* F extension registers are mapped as type 5 */
144 #define KVM_REG_RISCV_FP_F              (0x05 << KVM_REG_RISCV_TYPE_SHIFT)
145 #define KVM_REG_RISCV_FP_F_REG(name)    \
146                 (offsetof(struct __riscv_f_ext_state, name) / sizeof(__u32))
147
148 /* D extension registers are mapped as type 6 */
149 #define KVM_REG_RISCV_FP_D              (0x06 << KVM_REG_RISCV_TYPE_SHIFT)
150 #define KVM_REG_RISCV_FP_D_REG(name)    \
151                 (offsetof(struct __riscv_d_ext_state, name) / sizeof(__u64))
152
153 /* ISA Extension registers are mapped as type 7 */
154 #define KVM_REG_RISCV_ISA_EXT           (0x07 << KVM_REG_RISCV_TYPE_SHIFT)
155
156 #endif
157
158 #endif /* __LINUX_KVM_RISCV_H */