This source file includes following definitions.
- coproc_a15_init
1
2
3
4
5
6
7 #include <linux/kvm_host.h>
8 #include <asm/kvm_coproc.h>
9 #include <asm/kvm_emulate.h>
10 #include <linux/init.h>
11
12 #include "coproc.h"
13
14
15
16
17
18
19
20
21
22 static const struct coproc_reg a15_regs[] = {
23
24 { CRn( 1), CRm( 0), Op1( 0), Op2( 0), is32,
25 access_vm_reg, reset_val, c1_SCTLR, 0x00C50078 },
26 };
27
28 static struct kvm_coproc_target_table a15_target_table = {
29 .target = KVM_ARM_TARGET_CORTEX_A15,
30 .table = a15_regs,
31 .num = ARRAY_SIZE(a15_regs),
32 };
33
34 static int __init coproc_a15_init(void)
35 {
36 kvm_register_target_coproc_table(&a15_target_table);
37 return 0;
38 }
39 late_initcall(coproc_a15_init);