blob: 1827b643af15a4bc0e82568014b848d637478509 [file] [log] [blame]
Christoffer Dall749cf76c2013-01-20 18:28:06 -05001/*
2 * Copyright (C) 2012 - Virtual Open Systems and Columbia University
3 * Authors: Rusty Russell <rusty@rustcorp.com.au>
4 * Christoffer Dall <c.dall@virtualopensystems.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050019#include <linux/mm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050020#include <linux/kvm_host.h>
Christoffer Dall11382452013-01-20 18:28:10 -050021#include <linux/uaccess.h>
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050022#include <asm/kvm_arm.h>
23#include <asm/kvm_host.h>
24#include <asm/kvm_emulate.h>
25#include <asm/kvm_coproc.h>
26#include <asm/cacheflush.h>
27#include <asm/cputype.h>
28#include <trace/events/kvm.h>
Christoffer Dall749cf76c2013-01-20 18:28:06 -050029
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050030#include "trace.h"
31#include "coproc.h"
32
33
34/******************************************************************************
35 * Co-processor emulation
36 *****************************************************************************/
37
Christoffer Dallc27581e2013-01-20 18:28:10 -050038/* 3 bits per cache level, as per CLIDR, but non-existent caches always 0 */
39static u32 cache_levels;
40
41/* CSSELR values; used to index KVM_REG_ARM_DEMUX_ID_CCSIDR */
42#define CSSELR_MAX 12
43
Christoffer Dall5b3e5e52013-01-20 18:28:09 -050044int kvm_handle_cp10_id(struct kvm_vcpu *vcpu, struct kvm_run *run)
45{
46 kvm_inject_undefined(vcpu);
47 return 1;
48}
49
50int kvm_handle_cp_0_13_access(struct kvm_vcpu *vcpu, struct kvm_run *run)
51{
52 /*
53 * We can get here, if the host has been built without VFPv3 support,
54 * but the guest attempted a floating point operation.
55 */
56 kvm_inject_undefined(vcpu);
57 return 1;
58}
59
60int kvm_handle_cp14_load_store(struct kvm_vcpu *vcpu, struct kvm_run *run)
61{
62 kvm_inject_undefined(vcpu);
63 return 1;
64}
65
66int kvm_handle_cp14_access(struct kvm_vcpu *vcpu, struct kvm_run *run)
67{
68 kvm_inject_undefined(vcpu);
69 return 1;
70}
71
72/* See note at ARM ARM B1.14.4 */
73static bool access_dcsw(struct kvm_vcpu *vcpu,
74 const struct coproc_params *p,
75 const struct coproc_reg *r)
76{
77 u32 val;
78 int cpu;
79
80 cpu = get_cpu();
81
82 if (!p->is_write)
83 return read_from_write_only(vcpu, p);
84
85 cpumask_setall(&vcpu->arch.require_dcache_flush);
86 cpumask_clear_cpu(cpu, &vcpu->arch.require_dcache_flush);
87
88 /* If we were already preempted, take the long way around */
89 if (cpu != vcpu->arch.last_pcpu) {
90 flush_cache_all();
91 goto done;
92 }
93
94 val = *vcpu_reg(vcpu, p->Rt1);
95
96 switch (p->CRm) {
97 case 6: /* Upgrade DCISW to DCCISW, as per HCR.SWIO */
98 case 14: /* DCCISW */
99 asm volatile("mcr p15, 0, %0, c7, c14, 2" : : "r" (val));
100 break;
101
102 case 10: /* DCCSW */
103 asm volatile("mcr p15, 0, %0, c7, c10, 2" : : "r" (val));
104 break;
105 }
106
107done:
108 put_cpu();
109
110 return true;
111}
112
113/*
114 * We could trap ID_DFR0 and tell the guest we don't support performance
115 * monitoring. Unfortunately the patch to make the kernel check ID_DFR0 was
116 * NAKed, so it will read the PMCR anyway.
117 *
118 * Therefore we tell the guest we have 0 counters. Unfortunately, we
119 * must always support PMCCNTR (the cycle counter): we just RAZ/WI for
120 * all PM registers, which doesn't crash the guest kernel at least.
121 */
122static bool pm_fake(struct kvm_vcpu *vcpu,
123 const struct coproc_params *p,
124 const struct coproc_reg *r)
125{
126 if (p->is_write)
127 return ignore_write(vcpu, p);
128 else
129 return read_zero(vcpu, p);
130}
131
132#define access_pmcr pm_fake
133#define access_pmcntenset pm_fake
134#define access_pmcntenclr pm_fake
135#define access_pmovsr pm_fake
136#define access_pmselr pm_fake
137#define access_pmceid0 pm_fake
138#define access_pmceid1 pm_fake
139#define access_pmccntr pm_fake
140#define access_pmxevtyper pm_fake
141#define access_pmxevcntr pm_fake
142#define access_pmuserenr pm_fake
143#define access_pmintenset pm_fake
144#define access_pmintenclr pm_fake
145
146/* Architected CP15 registers.
147 * Important: Must be sorted ascending by CRn, CRM, Op1, Op2
148 */
149static const struct coproc_reg cp15_regs[] = {
150 /* CSSELR: swapped by interrupt.S. */
151 { CRn( 0), CRm( 0), Op1( 2), Op2( 0), is32,
152 NULL, reset_unknown, c0_CSSELR },
153
154 /* TTBR0/TTBR1: swapped by interrupt.S. */
155 { CRm( 2), Op1( 0), is64, NULL, reset_unknown64, c2_TTBR0 },
156 { CRm( 2), Op1( 1), is64, NULL, reset_unknown64, c2_TTBR1 },
157
158 /* TTBCR: swapped by interrupt.S. */
159 { CRn( 2), CRm( 0), Op1( 0), Op2( 2), is32,
160 NULL, reset_val, c2_TTBCR, 0x00000000 },
161
162 /* DACR: swapped by interrupt.S. */
163 { CRn( 3), CRm( 0), Op1( 0), Op2( 0), is32,
164 NULL, reset_unknown, c3_DACR },
165
166 /* DFSR/IFSR/ADFSR/AIFSR: swapped by interrupt.S. */
167 { CRn( 5), CRm( 0), Op1( 0), Op2( 0), is32,
168 NULL, reset_unknown, c5_DFSR },
169 { CRn( 5), CRm( 0), Op1( 0), Op2( 1), is32,
170 NULL, reset_unknown, c5_IFSR },
171 { CRn( 5), CRm( 1), Op1( 0), Op2( 0), is32,
172 NULL, reset_unknown, c5_ADFSR },
173 { CRn( 5), CRm( 1), Op1( 0), Op2( 1), is32,
174 NULL, reset_unknown, c5_AIFSR },
175
176 /* DFAR/IFAR: swapped by interrupt.S. */
177 { CRn( 6), CRm( 0), Op1( 0), Op2( 0), is32,
178 NULL, reset_unknown, c6_DFAR },
179 { CRn( 6), CRm( 0), Op1( 0), Op2( 2), is32,
180 NULL, reset_unknown, c6_IFAR },
181 /*
182 * DC{C,I,CI}SW operations:
183 */
184 { CRn( 7), CRm( 6), Op1( 0), Op2( 2), is32, access_dcsw},
185 { CRn( 7), CRm(10), Op1( 0), Op2( 2), is32, access_dcsw},
186 { CRn( 7), CRm(14), Op1( 0), Op2( 2), is32, access_dcsw},
187 /*
188 * Dummy performance monitor implementation.
189 */
190 { CRn( 9), CRm(12), Op1( 0), Op2( 0), is32, access_pmcr},
191 { CRn( 9), CRm(12), Op1( 0), Op2( 1), is32, access_pmcntenset},
192 { CRn( 9), CRm(12), Op1( 0), Op2( 2), is32, access_pmcntenclr},
193 { CRn( 9), CRm(12), Op1( 0), Op2( 3), is32, access_pmovsr},
194 { CRn( 9), CRm(12), Op1( 0), Op2( 5), is32, access_pmselr},
195 { CRn( 9), CRm(12), Op1( 0), Op2( 6), is32, access_pmceid0},
196 { CRn( 9), CRm(12), Op1( 0), Op2( 7), is32, access_pmceid1},
197 { CRn( 9), CRm(13), Op1( 0), Op2( 0), is32, access_pmccntr},
198 { CRn( 9), CRm(13), Op1( 0), Op2( 1), is32, access_pmxevtyper},
199 { CRn( 9), CRm(13), Op1( 0), Op2( 2), is32, access_pmxevcntr},
200 { CRn( 9), CRm(14), Op1( 0), Op2( 0), is32, access_pmuserenr},
201 { CRn( 9), CRm(14), Op1( 0), Op2( 1), is32, access_pmintenset},
202 { CRn( 9), CRm(14), Op1( 0), Op2( 2), is32, access_pmintenclr},
203
204 /* PRRR/NMRR (aka MAIR0/MAIR1): swapped by interrupt.S. */
205 { CRn(10), CRm( 2), Op1( 0), Op2( 0), is32,
206 NULL, reset_unknown, c10_PRRR},
207 { CRn(10), CRm( 2), Op1( 0), Op2( 1), is32,
208 NULL, reset_unknown, c10_NMRR},
209
210 /* VBAR: swapped by interrupt.S. */
211 { CRn(12), CRm( 0), Op1( 0), Op2( 0), is32,
212 NULL, reset_val, c12_VBAR, 0x00000000 },
213
214 /* CONTEXTIDR/TPIDRURW/TPIDRURO/TPIDRPRW: swapped by interrupt.S. */
215 { CRn(13), CRm( 0), Op1( 0), Op2( 1), is32,
216 NULL, reset_val, c13_CID, 0x00000000 },
217 { CRn(13), CRm( 0), Op1( 0), Op2( 2), is32,
218 NULL, reset_unknown, c13_TID_URW },
219 { CRn(13), CRm( 0), Op1( 0), Op2( 3), is32,
220 NULL, reset_unknown, c13_TID_URO },
221 { CRn(13), CRm( 0), Op1( 0), Op2( 4), is32,
222 NULL, reset_unknown, c13_TID_PRIV },
223};
224
225/* Target specific emulation tables */
226static struct kvm_coproc_target_table *target_tables[KVM_ARM_NUM_TARGETS];
227
228void kvm_register_target_coproc_table(struct kvm_coproc_target_table *table)
229{
230 target_tables[table->target] = table;
231}
232
233/* Get specific register table for this target. */
234static const struct coproc_reg *get_target_table(unsigned target, size_t *num)
235{
236 struct kvm_coproc_target_table *table;
237
238 table = target_tables[target];
239 *num = table->num;
240 return table->table;
241}
242
243static const struct coproc_reg *find_reg(const struct coproc_params *params,
244 const struct coproc_reg table[],
245 unsigned int num)
246{
247 unsigned int i;
248
249 for (i = 0; i < num; i++) {
250 const struct coproc_reg *r = &table[i];
251
252 if (params->is_64bit != r->is_64)
253 continue;
254 if (params->CRn != r->CRn)
255 continue;
256 if (params->CRm != r->CRm)
257 continue;
258 if (params->Op1 != r->Op1)
259 continue;
260 if (params->Op2 != r->Op2)
261 continue;
262
263 return r;
264 }
265 return NULL;
266}
267
268static int emulate_cp15(struct kvm_vcpu *vcpu,
269 const struct coproc_params *params)
270{
271 size_t num;
272 const struct coproc_reg *table, *r;
273
274 trace_kvm_emulate_cp15_imp(params->Op1, params->Rt1, params->CRn,
275 params->CRm, params->Op2, params->is_write);
276
277 table = get_target_table(vcpu->arch.target, &num);
278
279 /* Search target-specific then generic table. */
280 r = find_reg(params, table, num);
281 if (!r)
282 r = find_reg(params, cp15_regs, ARRAY_SIZE(cp15_regs));
283
284 if (likely(r)) {
285 /* If we don't have an accessor, we should never get here! */
286 BUG_ON(!r->access);
287
288 if (likely(r->access(vcpu, params, r))) {
289 /* Skip instruction, since it was emulated */
290 kvm_skip_instr(vcpu, (vcpu->arch.hsr >> 25) & 1);
291 return 1;
292 }
293 /* If access function fails, it should complain. */
294 } else {
295 kvm_err("Unsupported guest CP15 access at: %08x\n",
296 *vcpu_pc(vcpu));
297 print_cp_instr(params);
298 }
299 kvm_inject_undefined(vcpu);
300 return 1;
301}
302
303/**
304 * kvm_handle_cp15_64 -- handles a mrrc/mcrr trap on a guest CP15 access
305 * @vcpu: The VCPU pointer
306 * @run: The kvm_run struct
307 */
308int kvm_handle_cp15_64(struct kvm_vcpu *vcpu, struct kvm_run *run)
309{
310 struct coproc_params params;
311
312 params.CRm = (vcpu->arch.hsr >> 1) & 0xf;
313 params.Rt1 = (vcpu->arch.hsr >> 5) & 0xf;
314 params.is_write = ((vcpu->arch.hsr & 1) == 0);
315 params.is_64bit = true;
316
317 params.Op1 = (vcpu->arch.hsr >> 16) & 0xf;
318 params.Op2 = 0;
319 params.Rt2 = (vcpu->arch.hsr >> 10) & 0xf;
320 params.CRn = 0;
321
322 return emulate_cp15(vcpu, &params);
323}
324
325static void reset_coproc_regs(struct kvm_vcpu *vcpu,
326 const struct coproc_reg *table, size_t num)
327{
328 unsigned long i;
329
330 for (i = 0; i < num; i++)
331 if (table[i].reset)
332 table[i].reset(vcpu, &table[i]);
333}
334
335/**
336 * kvm_handle_cp15_32 -- handles a mrc/mcr trap on a guest CP15 access
337 * @vcpu: The VCPU pointer
338 * @run: The kvm_run struct
339 */
340int kvm_handle_cp15_32(struct kvm_vcpu *vcpu, struct kvm_run *run)
341{
342 struct coproc_params params;
343
344 params.CRm = (vcpu->arch.hsr >> 1) & 0xf;
345 params.Rt1 = (vcpu->arch.hsr >> 5) & 0xf;
346 params.is_write = ((vcpu->arch.hsr & 1) == 0);
347 params.is_64bit = false;
348
349 params.CRn = (vcpu->arch.hsr >> 10) & 0xf;
350 params.Op1 = (vcpu->arch.hsr >> 14) & 0x7;
351 params.Op2 = (vcpu->arch.hsr >> 17) & 0x7;
352 params.Rt2 = 0;
353
354 return emulate_cp15(vcpu, &params);
355}
356
Christoffer Dall11382452013-01-20 18:28:10 -0500357/******************************************************************************
358 * Userspace API
359 *****************************************************************************/
360
361static bool index_to_params(u64 id, struct coproc_params *params)
362{
363 switch (id & KVM_REG_SIZE_MASK) {
364 case KVM_REG_SIZE_U32:
365 /* Any unused index bits means it's not valid. */
366 if (id & ~(KVM_REG_ARCH_MASK | KVM_REG_SIZE_MASK
367 | KVM_REG_ARM_COPROC_MASK
368 | KVM_REG_ARM_32_CRN_MASK
369 | KVM_REG_ARM_CRM_MASK
370 | KVM_REG_ARM_OPC1_MASK
371 | KVM_REG_ARM_32_OPC2_MASK))
372 return false;
373
374 params->is_64bit = false;
375 params->CRn = ((id & KVM_REG_ARM_32_CRN_MASK)
376 >> KVM_REG_ARM_32_CRN_SHIFT);
377 params->CRm = ((id & KVM_REG_ARM_CRM_MASK)
378 >> KVM_REG_ARM_CRM_SHIFT);
379 params->Op1 = ((id & KVM_REG_ARM_OPC1_MASK)
380 >> KVM_REG_ARM_OPC1_SHIFT);
381 params->Op2 = ((id & KVM_REG_ARM_32_OPC2_MASK)
382 >> KVM_REG_ARM_32_OPC2_SHIFT);
383 return true;
384 case KVM_REG_SIZE_U64:
385 /* Any unused index bits means it's not valid. */
386 if (id & ~(KVM_REG_ARCH_MASK | KVM_REG_SIZE_MASK
387 | KVM_REG_ARM_COPROC_MASK
388 | KVM_REG_ARM_CRM_MASK
389 | KVM_REG_ARM_OPC1_MASK))
390 return false;
391 params->is_64bit = true;
392 params->CRm = ((id & KVM_REG_ARM_CRM_MASK)
393 >> KVM_REG_ARM_CRM_SHIFT);
394 params->Op1 = ((id & KVM_REG_ARM_OPC1_MASK)
395 >> KVM_REG_ARM_OPC1_SHIFT);
396 params->Op2 = 0;
397 params->CRn = 0;
398 return true;
399 default:
400 return false;
401 }
402}
403
404/* Decode an index value, and find the cp15 coproc_reg entry. */
405static const struct coproc_reg *index_to_coproc_reg(struct kvm_vcpu *vcpu,
406 u64 id)
407{
408 size_t num;
409 const struct coproc_reg *table, *r;
410 struct coproc_params params;
411
412 /* We only do cp15 for now. */
413 if ((id & KVM_REG_ARM_COPROC_MASK) >> KVM_REG_ARM_COPROC_SHIFT != 15)
414 return NULL;
415
416 if (!index_to_params(id, &params))
417 return NULL;
418
419 table = get_target_table(vcpu->arch.target, &num);
420 r = find_reg(&params, table, num);
421 if (!r)
422 r = find_reg(&params, cp15_regs, ARRAY_SIZE(cp15_regs));
423
424 /* Not saved in the cp15 array? */
425 if (r && !r->reg)
426 r = NULL;
427
428 return r;
429}
430
431/*
432 * These are the invariant cp15 registers: we let the guest see the host
433 * versions of these, so they're part of the guest state.
434 *
435 * A future CPU may provide a mechanism to present different values to
436 * the guest, or a future kvm may trap them.
437 */
438/* Unfortunately, there's no register-argument for mrc, so generate. */
439#define FUNCTION_FOR32(crn, crm, op1, op2, name) \
440 static void get_##name(struct kvm_vcpu *v, \
441 const struct coproc_reg *r) \
442 { \
443 u32 val; \
444 \
445 asm volatile("mrc p15, " __stringify(op1) \
446 ", %0, c" __stringify(crn) \
447 ", c" __stringify(crm) \
448 ", " __stringify(op2) "\n" : "=r" (val)); \
449 ((struct coproc_reg *)r)->val = val; \
450 }
451
452FUNCTION_FOR32(0, 0, 0, 0, MIDR)
453FUNCTION_FOR32(0, 0, 0, 1, CTR)
454FUNCTION_FOR32(0, 0, 0, 2, TCMTR)
455FUNCTION_FOR32(0, 0, 0, 3, TLBTR)
456FUNCTION_FOR32(0, 0, 0, 6, REVIDR)
457FUNCTION_FOR32(0, 1, 0, 0, ID_PFR0)
458FUNCTION_FOR32(0, 1, 0, 1, ID_PFR1)
459FUNCTION_FOR32(0, 1, 0, 2, ID_DFR0)
460FUNCTION_FOR32(0, 1, 0, 3, ID_AFR0)
461FUNCTION_FOR32(0, 1, 0, 4, ID_MMFR0)
462FUNCTION_FOR32(0, 1, 0, 5, ID_MMFR1)
463FUNCTION_FOR32(0, 1, 0, 6, ID_MMFR2)
464FUNCTION_FOR32(0, 1, 0, 7, ID_MMFR3)
465FUNCTION_FOR32(0, 2, 0, 0, ID_ISAR0)
466FUNCTION_FOR32(0, 2, 0, 1, ID_ISAR1)
467FUNCTION_FOR32(0, 2, 0, 2, ID_ISAR2)
468FUNCTION_FOR32(0, 2, 0, 3, ID_ISAR3)
469FUNCTION_FOR32(0, 2, 0, 4, ID_ISAR4)
470FUNCTION_FOR32(0, 2, 0, 5, ID_ISAR5)
471FUNCTION_FOR32(0, 0, 1, 1, CLIDR)
472FUNCTION_FOR32(0, 0, 1, 7, AIDR)
473
474/* ->val is filled in by kvm_invariant_coproc_table_init() */
475static struct coproc_reg invariant_cp15[] = {
476 { CRn( 0), CRm( 0), Op1( 0), Op2( 0), is32, NULL, get_MIDR },
477 { CRn( 0), CRm( 0), Op1( 0), Op2( 1), is32, NULL, get_CTR },
478 { CRn( 0), CRm( 0), Op1( 0), Op2( 2), is32, NULL, get_TCMTR },
479 { CRn( 0), CRm( 0), Op1( 0), Op2( 3), is32, NULL, get_TLBTR },
480 { CRn( 0), CRm( 0), Op1( 0), Op2( 6), is32, NULL, get_REVIDR },
481
482 { CRn( 0), CRm( 1), Op1( 0), Op2( 0), is32, NULL, get_ID_PFR0 },
483 { CRn( 0), CRm( 1), Op1( 0), Op2( 1), is32, NULL, get_ID_PFR1 },
484 { CRn( 0), CRm( 1), Op1( 0), Op2( 2), is32, NULL, get_ID_DFR0 },
485 { CRn( 0), CRm( 1), Op1( 0), Op2( 3), is32, NULL, get_ID_AFR0 },
486 { CRn( 0), CRm( 1), Op1( 0), Op2( 4), is32, NULL, get_ID_MMFR0 },
487 { CRn( 0), CRm( 1), Op1( 0), Op2( 5), is32, NULL, get_ID_MMFR1 },
488 { CRn( 0), CRm( 1), Op1( 0), Op2( 6), is32, NULL, get_ID_MMFR2 },
489 { CRn( 0), CRm( 1), Op1( 0), Op2( 7), is32, NULL, get_ID_MMFR3 },
490
491 { CRn( 0), CRm( 2), Op1( 0), Op2( 0), is32, NULL, get_ID_ISAR0 },
492 { CRn( 0), CRm( 2), Op1( 0), Op2( 1), is32, NULL, get_ID_ISAR1 },
493 { CRn( 0), CRm( 2), Op1( 0), Op2( 2), is32, NULL, get_ID_ISAR2 },
494 { CRn( 0), CRm( 2), Op1( 0), Op2( 3), is32, NULL, get_ID_ISAR3 },
495 { CRn( 0), CRm( 2), Op1( 0), Op2( 4), is32, NULL, get_ID_ISAR4 },
496 { CRn( 0), CRm( 2), Op1( 0), Op2( 5), is32, NULL, get_ID_ISAR5 },
497
498 { CRn( 0), CRm( 0), Op1( 1), Op2( 1), is32, NULL, get_CLIDR },
499 { CRn( 0), CRm( 0), Op1( 1), Op2( 7), is32, NULL, get_AIDR },
500};
501
502static int reg_from_user(void *val, const void __user *uaddr, u64 id)
503{
504 /* This Just Works because we are little endian. */
505 if (copy_from_user(val, uaddr, KVM_REG_SIZE(id)) != 0)
506 return -EFAULT;
507 return 0;
508}
509
510static int reg_to_user(void __user *uaddr, const void *val, u64 id)
511{
512 /* This Just Works because we are little endian. */
513 if (copy_to_user(uaddr, val, KVM_REG_SIZE(id)) != 0)
514 return -EFAULT;
515 return 0;
516}
517
518static int get_invariant_cp15(u64 id, void __user *uaddr)
519{
520 struct coproc_params params;
521 const struct coproc_reg *r;
522
523 if (!index_to_params(id, &params))
524 return -ENOENT;
525
526 r = find_reg(&params, invariant_cp15, ARRAY_SIZE(invariant_cp15));
527 if (!r)
528 return -ENOENT;
529
530 return reg_to_user(uaddr, &r->val, id);
531}
532
533static int set_invariant_cp15(u64 id, void __user *uaddr)
534{
535 struct coproc_params params;
536 const struct coproc_reg *r;
537 int err;
538 u64 val = 0; /* Make sure high bits are 0 for 32-bit regs */
539
540 if (!index_to_params(id, &params))
541 return -ENOENT;
542 r = find_reg(&params, invariant_cp15, ARRAY_SIZE(invariant_cp15));
543 if (!r)
544 return -ENOENT;
545
546 err = reg_from_user(&val, uaddr, id);
547 if (err)
548 return err;
549
550 /* This is what we mean by invariant: you can't change it. */
551 if (r->val != val)
552 return -EINVAL;
553
554 return 0;
555}
556
Christoffer Dallc27581e2013-01-20 18:28:10 -0500557static bool is_valid_cache(u32 val)
558{
559 u32 level, ctype;
560
561 if (val >= CSSELR_MAX)
562 return -ENOENT;
563
564 /* Bottom bit is Instruction or Data bit. Next 3 bits are level. */
565 level = (val >> 1);
566 ctype = (cache_levels >> (level * 3)) & 7;
567
568 switch (ctype) {
569 case 0: /* No cache */
570 return false;
571 case 1: /* Instruction cache only */
572 return (val & 1);
573 case 2: /* Data cache only */
574 case 4: /* Unified cache */
575 return !(val & 1);
576 case 3: /* Separate instruction and data caches */
577 return true;
578 default: /* Reserved: we can't know instruction or data. */
579 return false;
580 }
581}
582
583/* Which cache CCSIDR represents depends on CSSELR value. */
584static u32 get_ccsidr(u32 csselr)
585{
586 u32 ccsidr;
587
588 /* Make sure noone else changes CSSELR during this! */
589 local_irq_disable();
590 /* Put value into CSSELR */
591 asm volatile("mcr p15, 2, %0, c0, c0, 0" : : "r" (csselr));
592 isb();
593 /* Read result out of CCSIDR */
594 asm volatile("mrc p15, 1, %0, c0, c0, 0" : "=r" (ccsidr));
595 local_irq_enable();
596
597 return ccsidr;
598}
599
600static int demux_c15_get(u64 id, void __user *uaddr)
601{
602 u32 val;
603 u32 __user *uval = uaddr;
604
605 /* Fail if we have unknown bits set. */
606 if (id & ~(KVM_REG_ARCH_MASK|KVM_REG_SIZE_MASK|KVM_REG_ARM_COPROC_MASK
607 | ((1 << KVM_REG_ARM_COPROC_SHIFT)-1)))
608 return -ENOENT;
609
610 switch (id & KVM_REG_ARM_DEMUX_ID_MASK) {
611 case KVM_REG_ARM_DEMUX_ID_CCSIDR:
612 if (KVM_REG_SIZE(id) != 4)
613 return -ENOENT;
614 val = (id & KVM_REG_ARM_DEMUX_VAL_MASK)
615 >> KVM_REG_ARM_DEMUX_VAL_SHIFT;
616 if (!is_valid_cache(val))
617 return -ENOENT;
618
619 return put_user(get_ccsidr(val), uval);
620 default:
621 return -ENOENT;
622 }
623}
624
625static int demux_c15_set(u64 id, void __user *uaddr)
626{
627 u32 val, newval;
628 u32 __user *uval = uaddr;
629
630 /* Fail if we have unknown bits set. */
631 if (id & ~(KVM_REG_ARCH_MASK|KVM_REG_SIZE_MASK|KVM_REG_ARM_COPROC_MASK
632 | ((1 << KVM_REG_ARM_COPROC_SHIFT)-1)))
633 return -ENOENT;
634
635 switch (id & KVM_REG_ARM_DEMUX_ID_MASK) {
636 case KVM_REG_ARM_DEMUX_ID_CCSIDR:
637 if (KVM_REG_SIZE(id) != 4)
638 return -ENOENT;
639 val = (id & KVM_REG_ARM_DEMUX_VAL_MASK)
640 >> KVM_REG_ARM_DEMUX_VAL_SHIFT;
641 if (!is_valid_cache(val))
642 return -ENOENT;
643
644 if (get_user(newval, uval))
645 return -EFAULT;
646
647 /* This is also invariant: you can't change it. */
648 if (newval != get_ccsidr(val))
649 return -EINVAL;
650 return 0;
651 default:
652 return -ENOENT;
653 }
654}
655
Christoffer Dall11382452013-01-20 18:28:10 -0500656int kvm_arm_coproc_get_reg(struct kvm_vcpu *vcpu, const struct kvm_one_reg *reg)
657{
658 const struct coproc_reg *r;
659 void __user *uaddr = (void __user *)(long)reg->addr;
660
Christoffer Dallc27581e2013-01-20 18:28:10 -0500661 if ((reg->id & KVM_REG_ARM_COPROC_MASK) == KVM_REG_ARM_DEMUX)
662 return demux_c15_get(reg->id, uaddr);
663
Christoffer Dall11382452013-01-20 18:28:10 -0500664 r = index_to_coproc_reg(vcpu, reg->id);
665 if (!r)
666 return get_invariant_cp15(reg->id, uaddr);
667
668 /* Note: copies two regs if size is 64 bit. */
669 return reg_to_user(uaddr, &vcpu->arch.cp15[r->reg], reg->id);
670}
671
672int kvm_arm_coproc_set_reg(struct kvm_vcpu *vcpu, const struct kvm_one_reg *reg)
673{
674 const struct coproc_reg *r;
675 void __user *uaddr = (void __user *)(long)reg->addr;
676
Christoffer Dallc27581e2013-01-20 18:28:10 -0500677 if ((reg->id & KVM_REG_ARM_COPROC_MASK) == KVM_REG_ARM_DEMUX)
678 return demux_c15_set(reg->id, uaddr);
679
Christoffer Dall11382452013-01-20 18:28:10 -0500680 r = index_to_coproc_reg(vcpu, reg->id);
681 if (!r)
682 return set_invariant_cp15(reg->id, uaddr);
683
684 /* Note: copies two regs if size is 64 bit */
685 return reg_from_user(&vcpu->arch.cp15[r->reg], uaddr, reg->id);
686}
687
Christoffer Dallc27581e2013-01-20 18:28:10 -0500688static unsigned int num_demux_regs(void)
689{
690 unsigned int i, count = 0;
691
692 for (i = 0; i < CSSELR_MAX; i++)
693 if (is_valid_cache(i))
694 count++;
695
696 return count;
697}
698
699static int write_demux_regids(u64 __user *uindices)
700{
701 u64 val = KVM_REG_ARM | KVM_REG_SIZE_U32 | KVM_REG_ARM_DEMUX;
702 unsigned int i;
703
704 val |= KVM_REG_ARM_DEMUX_ID_CCSIDR;
705 for (i = 0; i < CSSELR_MAX; i++) {
706 if (!is_valid_cache(i))
707 continue;
708 if (put_user(val | i, uindices))
709 return -EFAULT;
710 uindices++;
711 }
712 return 0;
713}
714
Christoffer Dall11382452013-01-20 18:28:10 -0500715static u64 cp15_to_index(const struct coproc_reg *reg)
716{
717 u64 val = KVM_REG_ARM | (15 << KVM_REG_ARM_COPROC_SHIFT);
718 if (reg->is_64) {
719 val |= KVM_REG_SIZE_U64;
720 val |= (reg->Op1 << KVM_REG_ARM_OPC1_SHIFT);
721 val |= (reg->CRm << KVM_REG_ARM_CRM_SHIFT);
722 } else {
723 val |= KVM_REG_SIZE_U32;
724 val |= (reg->Op1 << KVM_REG_ARM_OPC1_SHIFT);
725 val |= (reg->Op2 << KVM_REG_ARM_32_OPC2_SHIFT);
726 val |= (reg->CRm << KVM_REG_ARM_CRM_SHIFT);
727 val |= (reg->CRn << KVM_REG_ARM_32_CRN_SHIFT);
728 }
729 return val;
730}
731
732static bool copy_reg_to_user(const struct coproc_reg *reg, u64 __user **uind)
733{
734 if (!*uind)
735 return true;
736
737 if (put_user(cp15_to_index(reg), *uind))
738 return false;
739
740 (*uind)++;
741 return true;
742}
743
744/* Assumed ordered tables, see kvm_coproc_table_init. */
745static int walk_cp15(struct kvm_vcpu *vcpu, u64 __user *uind)
746{
747 const struct coproc_reg *i1, *i2, *end1, *end2;
748 unsigned int total = 0;
749 size_t num;
750
751 /* We check for duplicates here, to allow arch-specific overrides. */
752 i1 = get_target_table(vcpu->arch.target, &num);
753 end1 = i1 + num;
754 i2 = cp15_regs;
755 end2 = cp15_regs + ARRAY_SIZE(cp15_regs);
756
757 BUG_ON(i1 == end1 || i2 == end2);
758
759 /* Walk carefully, as both tables may refer to the same register. */
760 while (i1 || i2) {
761 int cmp = cmp_reg(i1, i2);
762 /* target-specific overrides generic entry. */
763 if (cmp <= 0) {
764 /* Ignore registers we trap but don't save. */
765 if (i1->reg) {
766 if (!copy_reg_to_user(i1, &uind))
767 return -EFAULT;
768 total++;
769 }
770 } else {
771 /* Ignore registers we trap but don't save. */
772 if (i2->reg) {
773 if (!copy_reg_to_user(i2, &uind))
774 return -EFAULT;
775 total++;
776 }
777 }
778
779 if (cmp <= 0 && ++i1 == end1)
780 i1 = NULL;
781 if (cmp >= 0 && ++i2 == end2)
782 i2 = NULL;
783 }
784 return total;
785}
786
787unsigned long kvm_arm_num_coproc_regs(struct kvm_vcpu *vcpu)
788{
789 return ARRAY_SIZE(invariant_cp15)
Christoffer Dallc27581e2013-01-20 18:28:10 -0500790 + num_demux_regs()
Christoffer Dall11382452013-01-20 18:28:10 -0500791 + walk_cp15(vcpu, (u64 __user *)NULL);
792}
793
794int kvm_arm_copy_coproc_indices(struct kvm_vcpu *vcpu, u64 __user *uindices)
795{
796 unsigned int i;
797 int err;
798
799 /* Then give them all the invariant registers' indices. */
800 for (i = 0; i < ARRAY_SIZE(invariant_cp15); i++) {
801 if (put_user(cp15_to_index(&invariant_cp15[i]), uindices))
802 return -EFAULT;
803 uindices++;
804 }
805
806 err = walk_cp15(vcpu, uindices);
Christoffer Dallc27581e2013-01-20 18:28:10 -0500807 if (err < 0)
808 return err;
809 uindices += err;
810
811 return write_demux_regids(uindices);
Christoffer Dall11382452013-01-20 18:28:10 -0500812}
813
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500814void kvm_coproc_table_init(void)
815{
816 unsigned int i;
817
818 /* Make sure tables are unique and in order. */
819 for (i = 1; i < ARRAY_SIZE(cp15_regs); i++)
820 BUG_ON(cmp_reg(&cp15_regs[i-1], &cp15_regs[i]) >= 0);
Christoffer Dall11382452013-01-20 18:28:10 -0500821
822 /* We abuse the reset function to overwrite the table itself. */
823 for (i = 0; i < ARRAY_SIZE(invariant_cp15); i++)
824 invariant_cp15[i].reset(NULL, &invariant_cp15[i]);
Christoffer Dallc27581e2013-01-20 18:28:10 -0500825
826 /*
827 * CLIDR format is awkward, so clean it up. See ARM B4.1.20:
828 *
829 * If software reads the Cache Type fields from Ctype1
830 * upwards, once it has seen a value of 0b000, no caches
831 * exist at further-out levels of the hierarchy. So, for
832 * example, if Ctype3 is the first Cache Type field with a
833 * value of 0b000, the values of Ctype4 to Ctype7 must be
834 * ignored.
835 */
836 asm volatile("mrc p15, 1, %0, c0, c0, 1" : "=r" (cache_levels));
837 for (i = 0; i < 7; i++)
838 if (((cache_levels >> (i*3)) & 7) == 0)
839 break;
840 /* Clear all higher bits. */
841 cache_levels &= (1 << (i*3))-1;
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500842}
843
844/**
845 * kvm_reset_coprocs - sets cp15 registers to reset value
846 * @vcpu: The VCPU pointer
847 *
848 * This function finds the right table above and sets the registers on the
849 * virtual CPU struct to their architecturally defined reset values.
850 */
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500851void kvm_reset_coprocs(struct kvm_vcpu *vcpu)
852{
Christoffer Dall5b3e5e52013-01-20 18:28:09 -0500853 size_t num;
854 const struct coproc_reg *table;
855
856 /* Catch someone adding a register without putting in reset entry. */
857 memset(vcpu->arch.cp15, 0x42, sizeof(vcpu->arch.cp15));
858
859 /* Generic chip reset first (so target could override). */
860 reset_coproc_regs(vcpu, cp15_regs, ARRAY_SIZE(cp15_regs));
861
862 table = get_target_table(vcpu->arch.target, &num);
863 reset_coproc_regs(vcpu, table, num);
864
865 for (num = 1; num < NR_CP15_REGS; num++)
866 if (vcpu->arch.cp15[num] == 0x42424242)
867 panic("Didn't reset vcpu->arch.cp15[%zi]", num);
Christoffer Dall749cf76c2013-01-20 18:28:06 -0500868}