 043cc4d724
			
		
	
	
	043cc4d724
	
	
	
		
			
			We'll use it on e500mc as well. Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Avi Kivity <avi@redhat.com>
		
			
				
	
	
		
			103 lines
		
	
	
	
		
			2.4 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
	
		
			2.4 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * This program is free software; you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License, version 2, as
 | |
|  * published by the Free Software Foundation.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with this program; if not, write to the Free Software
 | |
|  * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 | |
|  *
 | |
|  * Copyright SUSE Linux Products GmbH 2010
 | |
|  *
 | |
|  * Authors: Alexander Graf <agraf@suse.de>
 | |
|  */
 | |
| 
 | |
| #ifndef __ASM_KVM_BOOKE_H__
 | |
| #define __ASM_KVM_BOOKE_H__
 | |
| 
 | |
| #include <linux/types.h>
 | |
| #include <linux/kvm_host.h>
 | |
| 
 | |
| /* LPIDs we support with this build -- runtime limit may be lower */
 | |
| #define KVMPPC_NR_LPIDS                        64
 | |
| 
 | |
| static inline void kvmppc_set_gpr(struct kvm_vcpu *vcpu, int num, ulong val)
 | |
| {
 | |
| 	vcpu->arch.gpr[num] = val;
 | |
| }
 | |
| 
 | |
| static inline ulong kvmppc_get_gpr(struct kvm_vcpu *vcpu, int num)
 | |
| {
 | |
| 	return vcpu->arch.gpr[num];
 | |
| }
 | |
| 
 | |
| static inline void kvmppc_set_cr(struct kvm_vcpu *vcpu, u32 val)
 | |
| {
 | |
| 	vcpu->arch.cr = val;
 | |
| }
 | |
| 
 | |
| static inline u32 kvmppc_get_cr(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.cr;
 | |
| }
 | |
| 
 | |
| static inline void kvmppc_set_xer(struct kvm_vcpu *vcpu, u32 val)
 | |
| {
 | |
| 	vcpu->arch.xer = val;
 | |
| }
 | |
| 
 | |
| static inline u32 kvmppc_get_xer(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.xer;
 | |
| }
 | |
| 
 | |
| static inline u32 kvmppc_get_last_inst(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.last_inst;
 | |
| }
 | |
| 
 | |
| static inline void kvmppc_set_ctr(struct kvm_vcpu *vcpu, ulong val)
 | |
| {
 | |
| 	vcpu->arch.ctr = val;
 | |
| }
 | |
| 
 | |
| static inline ulong kvmppc_get_ctr(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.ctr;
 | |
| }
 | |
| 
 | |
| static inline void kvmppc_set_lr(struct kvm_vcpu *vcpu, ulong val)
 | |
| {
 | |
| 	vcpu->arch.lr = val;
 | |
| }
 | |
| 
 | |
| static inline ulong kvmppc_get_lr(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.lr;
 | |
| }
 | |
| 
 | |
| static inline void kvmppc_set_pc(struct kvm_vcpu *vcpu, ulong val)
 | |
| {
 | |
| 	vcpu->arch.pc = val;
 | |
| }
 | |
| 
 | |
| static inline ulong kvmppc_get_pc(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.pc;
 | |
| }
 | |
| 
 | |
| static inline ulong kvmppc_get_fault_dar(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.fault_dear;
 | |
| }
 | |
| 
 | |
| static inline ulong kvmppc_get_msr(struct kvm_vcpu *vcpu)
 | |
| {
 | |
| 	return vcpu->arch.shared->msr;
 | |
| }
 | |
| #endif /* __ASM_KVM_BOOKE_H__ */
 |