2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
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.
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.
15 * Copyright SUSE Linux Products GmbH 2010
17 * Authors: Alexander Graf <agraf@suse.de>
20 #ifndef __ASM_KVM_BOOKE_H__
21 #define __ASM_KVM_BOOKE_H__
23 #include <linux/types.h>
24 #include <linux/kvm_host.h>
27 * Number of available lpids. Only the low-order 6 bits of LPID rgister are
28 * implemented on e500mc+ cores.
30 #define KVMPPC_NR_LPIDS 64
32 #define KVMPPC_INST_EHPRIV 0x7c00021c
33 #define EHPRIV_OC_SHIFT 11
34 /* "ehpriv 1" : ehpriv with OC = 1 is used for debug emulation */
35 #define EHPRIV_OC_DEBUG 1
37 static inline void kvmppc_set_gpr(struct kvm_vcpu
*vcpu
, int num
, ulong val
)
39 vcpu
->arch
.gpr
[num
] = val
;
42 static inline ulong
kvmppc_get_gpr(struct kvm_vcpu
*vcpu
, int num
)
44 return vcpu
->arch
.gpr
[num
];
47 static inline void kvmppc_set_cr(struct kvm_vcpu
*vcpu
, u32 val
)
52 static inline u32
kvmppc_get_cr(struct kvm_vcpu
*vcpu
)
57 static inline void kvmppc_set_xer(struct kvm_vcpu
*vcpu
, ulong val
)
62 static inline ulong
kvmppc_get_xer(struct kvm_vcpu
*vcpu
)
64 return vcpu
->arch
.xer
;
67 static inline bool kvmppc_need_byteswap(struct kvm_vcpu
*vcpu
)
69 /* XXX Would need to check TLB entry */
73 static inline void kvmppc_set_ctr(struct kvm_vcpu
*vcpu
, ulong val
)
78 static inline ulong
kvmppc_get_ctr(struct kvm_vcpu
*vcpu
)
80 return vcpu
->arch
.ctr
;
83 static inline void kvmppc_set_lr(struct kvm_vcpu
*vcpu
, ulong val
)
88 static inline ulong
kvmppc_get_lr(struct kvm_vcpu
*vcpu
)
93 static inline void kvmppc_set_pc(struct kvm_vcpu
*vcpu
, ulong val
)
98 static inline ulong
kvmppc_get_pc(struct kvm_vcpu
*vcpu
)
100 return vcpu
->arch
.pc
;
103 static inline ulong
kvmppc_get_fault_dar(struct kvm_vcpu
*vcpu
)
105 return vcpu
->arch
.fault_dear
;
108 static inline bool kvmppc_supports_magic_page(struct kvm_vcpu
*vcpu
)
110 /* Magic page is only supported on e500v2 */
111 #ifdef CONFIG_KVM_E500V2
117 #endif /* __ASM_KVM_BOOKE_H__ */