blob: 8bf259dae9f6cc278bb2c8623507c452f8d61694 [file] [log] [blame]
Hollis Blanchardd77a39d92007-12-03 15:30:23 -06001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 */
16
17#ifndef __KVM_TYPES_H__
18#define __KVM_TYPES_H__
19
Paolo Bonzini65647302014-08-29 14:01:17 +020020struct kvm;
21struct kvm_async_pf;
22struct kvm_device_ops;
23struct kvm_interrupt;
24struct kvm_irq_routing_table;
25struct kvm_memory_slot;
26struct kvm_one_reg;
27struct kvm_run;
28struct kvm_userspace_memory_region;
29struct kvm_vcpu;
30struct kvm_vcpu_init;
Paolo Bonzini15f46012015-05-17 21:26:08 +020031struct kvm_memslots;
Paolo Bonzini65647302014-08-29 14:01:17 +020032
33enum kvm_mr_change;
34
Hollis Blanchardd77a39d92007-12-03 15:30:23 -060035#include <asm/types.h>
36
37/*
38 * Address types:
39 *
40 * gva - guest virtual address
41 * gpa - guest physical address
42 * gfn - guest frame number
43 * hva - host virtual address
44 * hpa - host physical address
45 * hfn - host frame number
46 */
47
48typedef unsigned long gva_t;
49typedef u64 gpa_t;
Joerg Roedel5689cc52010-07-01 16:00:12 +020050typedef u64 gfn_t;
Hollis Blanchardd77a39d92007-12-03 15:30:23 -060051
52typedef unsigned long hva_t;
53typedef u64 hpa_t;
Joerg Roedel5689cc52010-07-01 16:00:12 +020054typedef u64 hfn_t;
Hollis Blanchardd77a39d92007-12-03 15:30:23 -060055
Dan Williamsba049e92016-01-15 16:56:11 -080056typedef hfn_t kvm_pfn_t;
Anthony Liguori35149e22008-04-02 14:46:56 -050057
Gleb Natapov49c77542010-10-18 15:22:23 +020058struct gfn_to_hva_cache {
59 u64 generation;
60 gpa_t gpa;
61 unsigned long hva;
Andrew Honig8f964522013-03-29 09:35:21 -070062 unsigned long len;
Gleb Natapov49c77542010-10-18 15:22:23 +020063 struct kvm_memory_slot *memslot;
64};
65
Hollis Blanchardd77a39d92007-12-03 15:30:23 -060066#endif /* __KVM_TYPES_H__ */