pinctrl: make a copy of pinmux map
[linux/fpc-iii.git] / arch / powerpc / include / asm / kvm_booke.h
bloba90e0918877738180a3f08574900b983cabfdf03
1 /*
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>
26 static inline void kvmppc_set_gpr(struct kvm_vcpu *vcpu, int num, ulong val)
28 vcpu->arch.gpr[num] = val;
31 static inline ulong kvmppc_get_gpr(struct kvm_vcpu *vcpu, int num)
33 return vcpu->arch.gpr[num];
36 static inline void kvmppc_set_cr(struct kvm_vcpu *vcpu, u32 val)
38 vcpu->arch.cr = val;
41 static inline u32 kvmppc_get_cr(struct kvm_vcpu *vcpu)
43 return vcpu->arch.cr;
46 static inline void kvmppc_set_xer(struct kvm_vcpu *vcpu, u32 val)
48 vcpu->arch.xer = val;
51 static inline u32 kvmppc_get_xer(struct kvm_vcpu *vcpu)
53 return vcpu->arch.xer;
56 static inline u32 kvmppc_get_last_inst(struct kvm_vcpu *vcpu)
58 return vcpu->arch.last_inst;
61 static inline void kvmppc_set_ctr(struct kvm_vcpu *vcpu, ulong val)
63 vcpu->arch.ctr = val;
66 static inline ulong kvmppc_get_ctr(struct kvm_vcpu *vcpu)
68 return vcpu->arch.ctr;
71 static inline void kvmppc_set_lr(struct kvm_vcpu *vcpu, ulong val)
73 vcpu->arch.lr = val;
76 static inline ulong kvmppc_get_lr(struct kvm_vcpu *vcpu)
78 return vcpu->arch.lr;
81 static inline void kvmppc_set_pc(struct kvm_vcpu *vcpu, ulong val)
83 vcpu->arch.pc = val;
86 static inline ulong kvmppc_get_pc(struct kvm_vcpu *vcpu)
88 return vcpu->arch.pc;
91 static inline ulong kvmppc_get_fault_dar(struct kvm_vcpu *vcpu)
93 return vcpu->arch.fault_dear;
96 static inline ulong kvmppc_get_msr(struct kvm_vcpu *vcpu)
98 return vcpu->arch.shared->msr;
100 #endif /* __ASM_KVM_BOOKE_H__ */