Merge remote-tracking branch 'regulator/topic/lp3972' into regulator-next
[deliverable/linux.git] / arch / powerpc / kvm / 44x.c
CommitLineData
9dd921cf
HB
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>
5a0e3ad6 21#include <linux/slab.h>
db93f574 22#include <linux/err.h>
93087948 23#include <linux/export.h>
db93f574 24
9dd921cf
HB
25#include <asm/reg.h>
26#include <asm/cputable.h>
27#include <asm/tlbflush.h>
db93f574
HB
28#include <asm/kvm_44x.h>
29#include <asm/kvm_ppc.h>
9dd921cf
HB
30
31#include "44x_tlb.h"
94fa9d99 32#include "booke.h"
9dd921cf 33
9dd921cf
HB
34void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
35{
94fa9d99 36 kvmppc_booke_vcpu_load(vcpu, cpu);
c5fbdffb 37 kvmppc_44x_tlb_load(vcpu);
9dd921cf
HB
38}
39
40void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
41{
c5fbdffb 42 kvmppc_44x_tlb_put(vcpu);
94fa9d99 43 kvmppc_booke_vcpu_put(vcpu);
9dd921cf
HB
44}
45
46int kvmppc_core_check_processor_compat(void)
47{
48 int r;
49
ebc65874 50 if (strncmp(cur_cpu_spec->platform, "ppc440", 6) == 0)
9dd921cf
HB
51 r = 0;
52 else
53 r = -ENOTSUPP;
54
55 return r;
56}
5cbb5106
HB
57
58int kvmppc_core_vcpu_setup(struct kvm_vcpu *vcpu)
59{
db93f574
HB
60 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
61 struct kvmppc_44x_tlbe *tlbe = &vcpu_44x->guest_tlb[0];
7924bd41 62 int i;
5cbb5106
HB
63
64 tlbe->tid = 0;
65 tlbe->word0 = PPC44x_TLB_16M | PPC44x_TLB_VALID;
66 tlbe->word1 = 0;
67 tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR;
68
69 tlbe++;
70 tlbe->tid = 0;
71 tlbe->word0 = 0xef600000 | PPC44x_TLB_4K | PPC44x_TLB_VALID;
72 tlbe->word1 = 0xef600000;
73 tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR
74 | PPC44x_TLB_I | PPC44x_TLB_G;
75
76 /* Since the guest can directly access the timebase, it must know the
77 * real timebase frequency. Accordingly, it must see the state of
78 * CCR1[TCS]. */
ebc65874 79 /* XXX CCR1 doesn't exist on all 440 SoCs. */
5cbb5106
HB
80 vcpu->arch.ccr1 = mfspr(SPRN_CCR1);
81
7924bd41
HB
82 for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++)
83 vcpu_44x->shadow_refs[i].gtlb_index = -1;
84
af8f38b3 85 vcpu->arch.cpu_type = KVM_CPU_440;
491dd5b8 86 vcpu->arch.pvr = mfspr(SPRN_PVR);
af8f38b3 87
5cbb5106
HB
88 return 0;
89}
90
91/* 'linear_address' is actually an encoding of AS|PID|EADDR . */
92int kvmppc_core_vcpu_translate(struct kvm_vcpu *vcpu,
93 struct kvm_translation *tr)
94{
5cbb5106
HB
95 int index;
96 gva_t eaddr;
97 u8 pid;
98 u8 as;
99
100 eaddr = tr->linear_address;
101 pid = (tr->linear_address >> 32) & 0xff;
102 as = (tr->linear_address >> 40) & 0x1;
103
104 index = kvmppc_44x_tlb_index(vcpu, eaddr, pid, as);
105 if (index == -1) {
106 tr->valid = 0;
107 return 0;
108 }
109
be8d1cae 110 tr->physical_address = kvmppc_mmu_xlate(vcpu, index, eaddr);
5cbb5106
HB
111 /* XXX what does "writeable" and "usermode" even mean? */
112 tr->valid = 1;
113
114 return 0;
115}
db93f574 116
5ce941ee
SW
117void kvmppc_core_get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
118{
119 kvmppc_get_sregs_ivor(vcpu, sregs);
120}
121
122int kvmppc_core_set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
123{
124 return kvmppc_set_sregs_ivor(vcpu, sregs);
125}
126
db93f574
HB
127struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
128{
129 struct kvmppc_vcpu_44x *vcpu_44x;
130 struct kvm_vcpu *vcpu;
131 int err;
132
133 vcpu_44x = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
134 if (!vcpu_44x) {
135 err = -ENOMEM;
136 goto out;
137 }
138
139 vcpu = &vcpu_44x->vcpu;
140 err = kvm_vcpu_init(vcpu, kvm, id);
141 if (err)
142 goto free_vcpu;
143
96bc451a
AG
144 vcpu->arch.shared = (void*)__get_free_page(GFP_KERNEL|__GFP_ZERO);
145 if (!vcpu->arch.shared)
146 goto uninit_vcpu;
147
db93f574
HB
148 return vcpu;
149
96bc451a
AG
150uninit_vcpu:
151 kvm_vcpu_uninit(vcpu);
db93f574
HB
152free_vcpu:
153 kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
154out:
155 return ERR_PTR(err);
156}
157
158void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
159{
160 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
161
96bc451a 162 free_page((unsigned long)vcpu->arch.shared);
db93f574
HB
163 kvm_vcpu_uninit(vcpu);
164 kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
165}
166
fafd6832
SW
167int kvmppc_core_init_vm(struct kvm *kvm)
168{
169 return 0;
170}
171
172void kvmppc_core_destroy_vm(struct kvm *kvm)
173{
174}
175
2986b8c7 176static int __init kvmppc_44x_init(void)
db93f574
HB
177{
178 int r;
179
180 r = kvmppc_booke_init();
181 if (r)
182 return r;
183
0ee75bea 184 return kvm_init(NULL, sizeof(struct kvmppc_vcpu_44x), 0, THIS_MODULE);
db93f574
HB
185}
186
2986b8c7 187static void __exit kvmppc_44x_exit(void)
db93f574
HB
188{
189 kvmppc_booke_exit();
190}
191
192module_init(kvmppc_44x_init);
193module_exit(kvmppc_44x_exit);
This page took 0.324891 seconds and 5 git commands to generate.