kvm_e500.h 2.3 KB
Newer Older
1
/*
L
Liu Yu 已提交
2
 * Copyright (C) 2008-2011 Freescale Semiconductor, Inc. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * Author: Yu Liu, <yu.liu@freescale.com>
 *
 * Description:
 * This file is derived from arch/powerpc/include/asm/kvm_44x.h,
 * by Hollis Blanchard <hollisb@us.ibm.com>.
 *
 * 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.
 */

#ifndef __ASM_KVM_E500_H__
#define __ASM_KVM_E500_H__

#include <linux/kvm_host.h>

#define BOOKE_INTERRUPT_SIZE 36

#define E500_PID_NUM   3
#define E500_TLB_NUM   2

L
Liu Yu 已提交
25 26 27
#define E500_TLB_VALID 1
#define E500_TLB_DIRTY 2

28
struct tlbe_ref {
L
Liu Yu 已提交
29 30 31 32
	pfn_t pfn;
	unsigned int flags; /* E500_TLB_* */
};

33 34 35 36
struct tlbe_priv {
	struct tlbe_ref ref; /* TLB0 only -- TLB1 uses tlb_refs */
};

L
Liu Yu 已提交
37 38
struct vcpu_id_table;

39 40 41 42
struct kvmppc_e500_tlb_params {
	int entries, ways, sets;
};

43
struct kvmppc_vcpu_e500 {
S
Scott Wood 已提交
44 45 46 47 48
	/* Unmodified copy of the guest's TLB -- shared with host userspace. */
	struct kvm_book3e_206_tlb_entry *gtlb_arch;

	/* Starting entry number in gtlb_arch[] */
	int gtlb_offset[E500_TLB_NUM];
L
Liu Yu 已提交
49 50 51

	/* KVM internal information associated with each guest TLB entry */
	struct tlbe_priv *gtlb_priv[E500_TLB_NUM];
52

S
Scott Wood 已提交
53 54
	struct kvmppc_e500_tlb_params gtlb_params[E500_TLB_NUM];

L
Liu Yu 已提交
55
	unsigned int gtlb_nv[E500_TLB_NUM];
56

57 58 59 60 61 62 63 64 65 66 67 68 69
	/*
	 * information associated with each host TLB entry --
	 * TLB1 only for now.  If/when guest TLB1 entries can be
	 * mapped with host TLB0, this will be used for that too.
	 *
	 * We don't want to use this for guest TLB0 because then we'd
	 * have the overhead of doing the translation again even if
	 * the entry is still in the guest TLB (e.g. we swapped out
	 * and back, and our host TLB entries got evicted).
	 */
	struct tlbe_ref *tlb_refs[E500_TLB_NUM];
	unsigned int host_tlb1_nv;

70 71
	u32 host_pid[E500_PID_NUM];
	u32 pid[E500_PID_NUM];
S
Scott Wood 已提交
72
	u32 svr;
73 74 75 76

	u32 mas0;
	u32 mas1;
	u32 mas2;
S
Scott Wood 已提交
77
	u64 mas7_3;
78 79 80
	u32 mas4;
	u32 mas5;
	u32 mas6;
L
Liu Yu 已提交
81 82 83 84

	/* vcpu id table */
	struct vcpu_id_table *idt;

85
	u32 l1csr0;
86 87 88
	u32 l1csr1;
	u32 hid0;
	u32 hid1;
L
Liu Yu 已提交
89 90
	u32 tlb0cfg;
	u32 tlb1cfg;
S
Scott Wood 已提交
91
	u64 mcar;
92

S
Scott Wood 已提交
93 94 95
	struct page **shared_tlb_pages;
	int num_shared_tlb_pages;

96 97 98 99 100 101 102 103 104
	struct kvm_vcpu vcpu;
};

static inline struct kvmppc_vcpu_e500 *to_e500(struct kvm_vcpu *vcpu)
{
	return container_of(vcpu, struct kvmppc_vcpu_e500, vcpu);
}

#endif /* __ASM_KVM_E500_H__ */