Merge branch 'kvm-updates/3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/avi/kvm
[pandora-kernel.git] / arch / powerpc / kvm / 44x.c
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.
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  * Copyright IBM Corp. 2008
16  *
17  * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18  */
19
20 #include <linux/kvm_host.h>
21 #include <linux/slab.h>
22 #include <linux/err.h>
23
24 #include <asm/reg.h>
25 #include <asm/cputable.h>
26 #include <asm/tlbflush.h>
27 #include <asm/kvm_44x.h>
28 #include <asm/kvm_ppc.h>
29
30 #include "44x_tlb.h"
31
32 void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
33 {
34         kvmppc_44x_tlb_load(vcpu);
35 }
36
37 void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
38 {
39         kvmppc_44x_tlb_put(vcpu);
40 }
41
42 int kvmppc_core_check_processor_compat(void)
43 {
44         int r;
45
46         if (strncmp(cur_cpu_spec->platform, "ppc440", 6) == 0)
47                 r = 0;
48         else
49                 r = -ENOTSUPP;
50
51         return r;
52 }
53
54 int kvmppc_core_vcpu_setup(struct kvm_vcpu *vcpu)
55 {
56         struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
57         struct kvmppc_44x_tlbe *tlbe = &vcpu_44x->guest_tlb[0];
58         int i;
59
60         tlbe->tid = 0;
61         tlbe->word0 = PPC44x_TLB_16M | PPC44x_TLB_VALID;
62         tlbe->word1 = 0;
63         tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR;
64
65         tlbe++;
66         tlbe->tid = 0;
67         tlbe->word0 = 0xef600000 | PPC44x_TLB_4K | PPC44x_TLB_VALID;
68         tlbe->word1 = 0xef600000;
69         tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR
70                       | PPC44x_TLB_I | PPC44x_TLB_G;
71
72         /* Since the guest can directly access the timebase, it must know the
73          * real timebase frequency. Accordingly, it must see the state of
74          * CCR1[TCS]. */
75         /* XXX CCR1 doesn't exist on all 440 SoCs. */
76         vcpu->arch.ccr1 = mfspr(SPRN_CCR1);
77
78         for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++)
79                 vcpu_44x->shadow_refs[i].gtlb_index = -1;
80
81         vcpu->arch.cpu_type = KVM_CPU_440;
82
83         return 0;
84 }
85
86 /* 'linear_address' is actually an encoding of AS|PID|EADDR . */
87 int kvmppc_core_vcpu_translate(struct kvm_vcpu *vcpu,
88                                struct kvm_translation *tr)
89 {
90         int index;
91         gva_t eaddr;
92         u8 pid;
93         u8 as;
94
95         eaddr = tr->linear_address;
96         pid = (tr->linear_address >> 32) & 0xff;
97         as = (tr->linear_address >> 40) & 0x1;
98
99         index = kvmppc_44x_tlb_index(vcpu, eaddr, pid, as);
100         if (index == -1) {
101                 tr->valid = 0;
102                 return 0;
103         }
104
105         tr->physical_address = kvmppc_mmu_xlate(vcpu, index, eaddr);
106         /* XXX what does "writeable" and "usermode" even mean? */
107         tr->valid = 1;
108
109         return 0;
110 }
111
112 void kvmppc_core_get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
113 {
114         kvmppc_get_sregs_ivor(vcpu, sregs);
115 }
116
117 int kvmppc_core_set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
118 {
119         return kvmppc_set_sregs_ivor(vcpu, sregs);
120 }
121
122 struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
123 {
124         struct kvmppc_vcpu_44x *vcpu_44x;
125         struct kvm_vcpu *vcpu;
126         int err;
127
128         vcpu_44x = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
129         if (!vcpu_44x) {
130                 err = -ENOMEM;
131                 goto out;
132         }
133
134         vcpu = &vcpu_44x->vcpu;
135         err = kvm_vcpu_init(vcpu, kvm, id);
136         if (err)
137                 goto free_vcpu;
138
139         vcpu->arch.shared = (void*)__get_free_page(GFP_KERNEL|__GFP_ZERO);
140         if (!vcpu->arch.shared)
141                 goto uninit_vcpu;
142
143         return vcpu;
144
145 uninit_vcpu:
146         kvm_vcpu_uninit(vcpu);
147 free_vcpu:
148         kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
149 out:
150         return ERR_PTR(err);
151 }
152
153 void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
154 {
155         struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
156
157         free_page((unsigned long)vcpu->arch.shared);
158         kvm_vcpu_uninit(vcpu);
159         kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
160 }
161
162 static int __init kvmppc_44x_init(void)
163 {
164         int r;
165
166         r = kvmppc_booke_init();
167         if (r)
168                 return r;
169
170         return kvm_init(NULL, sizeof(struct kvmppc_vcpu_44x), 0, THIS_MODULE);
171 }
172
173 static void __exit kvmppc_44x_exit(void)
174 {
175         kvmppc_booke_exit();
176 }
177
178 module_init(kvmppc_44x_init);
179 module_exit(kvmppc_44x_exit);