Merge tag 'md/4.6-rc6-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/shli/md
[deliverable/linux.git] / arch / powerpc / include / asm / kvm_host.h
CommitLineData
bbf45ba5
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. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 */
19
20#ifndef __POWERPC_KVM_HOST_H__
21#define __POWERPC_KVM_HOST_H__
22
23#include <linux/mutex.h>
544c6761
AG
24#include <linux/hrtimer.h>
25#include <linux/interrupt.h>
bbf45ba5
HB
26#include <linux/types.h>
27#include <linux/kvm_types.h>
371fefd6
PM
28#include <linux/threads.h>
29#include <linux/spinlock.h>
96bc451a 30#include <linux/kvm_para.h>
aa04b4cc
PM
31#include <linux/list.h>
32#include <linux/atomic.h>
bbf45ba5 33#include <asm/kvm_asm.h>
371fefd6 34#include <asm/processor.h>
342d3db7 35#include <asm/page.h>
249ba1ee 36#include <asm/cacheflush.h>
699a0ea0 37#include <asm/hvcall.h>
bbf45ba5 38
371fefd6
PM
39#define KVM_MAX_VCPUS NR_CPUS
40#define KVM_MAX_VCORES NR_CPUS
696066f8 41#define KVM_USER_MEM_SLOTS 512
bbf45ba5 42
de56a948 43#ifdef CONFIG_KVM_MMIO
588968b6 44#define KVM_COALESCED_MMIO_PAGE_OFFSET 1
de56a948 45#endif
920552b2 46#define KVM_HALT_POLL_NS_DEFAULT 500000
588968b6 47
de9ba2f3
AG
48/* These values are internal and can be increased later */
49#define KVM_NR_IRQCHIPS 1
50#define KVM_IRQCHIP_NUM_PINS 256
51
2860c4b1
PB
52/* PPC-specific vcpu->requests bit members */
53#define KVM_REQ_WATCHDOG 8
54#define KVM_REQ_EPR_EXIT 9
55
342d3db7
PM
56#include <linux/mmu_notifier.h>
57
58#define KVM_ARCH_WANT_MMU_NOTIFIER
59
342d3db7 60extern int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
b3ae2096
TY
61extern int kvm_unmap_hva_range(struct kvm *kvm,
62 unsigned long start, unsigned long end);
57128468 63extern int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end);
342d3db7
PM
64extern int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);
65extern void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte);
66
fe71557a
TC
67static inline void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
68 unsigned long address)
69{
70}
71
fef093be
AG
72#define HPTEG_CACHE_NUM (1 << 15)
73#define HPTEG_HASH_BITS_PTE 13
2d27fc5e 74#define HPTEG_HASH_BITS_PTE_LONG 12
fef093be
AG
75#define HPTEG_HASH_BITS_VPTE 13
76#define HPTEG_HASH_BITS_VPTE_LONG 5
a4a0f252 77#define HPTEG_HASH_BITS_VPTE_64K 11
fef093be 78#define HPTEG_HASH_NUM_PTE (1 << HPTEG_HASH_BITS_PTE)
2d27fc5e 79#define HPTEG_HASH_NUM_PTE_LONG (1 << HPTEG_HASH_BITS_PTE_LONG)
fef093be
AG
80#define HPTEG_HASH_NUM_VPTE (1 << HPTEG_HASH_BITS_VPTE)
81#define HPTEG_HASH_NUM_VPTE_LONG (1 << HPTEG_HASH_BITS_VPTE_LONG)
a4a0f252 82#define HPTEG_HASH_NUM_VPTE_64K (1 << HPTEG_HASH_BITS_VPTE_64K)
ca95150b 83
28e83b4f
AG
84/* Physical Address Mask - allowed range of real mode RAM access */
85#define KVM_PAM 0x0fffffffffffffffULL
86
a8606e20
PM
87struct lppaca;
88struct slb_shadow;
2e25aa5f 89struct dtl_entry;
a8606e20 90
3ff95502
PM
91struct kvmppc_vcpu_book3s;
92struct kvmppc_book3s_shadow_vcpu;
93
bbf45ba5
HB
94struct kvm_vm_stat {
95 u32 remote_tlb_flush;
96};
97
98struct kvm_vcpu_stat {
99 u32 sum_exits;
100 u32 mmio_exits;
bbf45ba5
HB
101 u32 signal_exits;
102 u32 light_exits;
103 /* Account for special types of light exits: */
104 u32 itlb_real_miss_exits;
105 u32 itlb_virt_miss_exits;
106 u32 dtlb_real_miss_exits;
107 u32 dtlb_virt_miss_exits;
108 u32 syscall_exits;
109 u32 isi_exits;
110 u32 dsi_exits;
111 u32 emulated_inst_exits;
112 u32 dec_exits;
113 u32 ext_intr_exits;
f7819512 114 u32 halt_successful_poll;
62bea5bf 115 u32 halt_attempted_poll;
45c5eb67 116 u32 halt_wakeup;
d30f6e48
SW
117 u32 dbell_exits;
118 u32 gdbell_exits;
35c4a733
AG
119 u32 ld;
120 u32 st;
00c3a37c 121#ifdef CONFIG_PPC_BOOK3S
ca95150b
AG
122 u32 pf_storage;
123 u32 pf_instruc;
124 u32 sp_storage;
125 u32 sp_instruc;
126 u32 queue_intr;
ca95150b 127 u32 ld_slow;
ca95150b
AG
128 u32 st_slow;
129#endif
bbf45ba5
HB
130};
131
73e75b41
HB
132enum kvm_exit_types {
133 MMIO_EXITS,
73e75b41
HB
134 SIGNAL_EXITS,
135 ITLB_REAL_MISS_EXITS,
136 ITLB_VIRT_MISS_EXITS,
137 DTLB_REAL_MISS_EXITS,
138 DTLB_VIRT_MISS_EXITS,
139 SYSCALL_EXITS,
140 ISI_EXITS,
141 DSI_EXITS,
142 EMULATED_INST_EXITS,
143 EMULATED_MTMSRWE_EXITS,
144 EMULATED_WRTEE_EXITS,
145 EMULATED_MTSPR_EXITS,
146 EMULATED_MFSPR_EXITS,
147 EMULATED_MTMSR_EXITS,
148 EMULATED_MFMSR_EXITS,
149 EMULATED_TLBSX_EXITS,
150 EMULATED_TLBWE_EXITS,
151 EMULATED_RFI_EXITS,
d30f6e48 152 EMULATED_RFCI_EXITS,
c8ca97ca 153 EMULATED_RFDI_EXITS,
73e75b41
HB
154 DEC_EXITS,
155 EXT_INTR_EXITS,
156 HALT_WAKEUP,
157 USR_PR_INST,
158 FP_UNAVAIL,
159 DEBUG_EXITS,
160 TIMEINGUEST,
d30f6e48
SW
161 DBELL_EXITS,
162 GDBELL_EXITS,
73e75b41
HB
163 __NUMBER_OF_KVM_EXIT_TYPES
164};
165
73e75b41 166/* allow access to big endian 32bit upper/lower parts and 64bit var */
7b701591 167struct kvmppc_exit_timing {
73e75b41
HB
168 union {
169 u64 tv64;
170 struct {
171 u32 tbu, tbl;
172 } tv32;
173 };
174};
73e75b41 175
de56a948
PM
176struct kvmppc_pginfo {
177 unsigned long pfn;
178 atomic_t refcnt;
179};
180
54738c09
DG
181struct kvmppc_spapr_tce_table {
182 struct list_head list;
183 struct kvm *kvm;
184 u64 liobn;
366baf28 185 struct rcu_head rcu;
fe26e527 186 u32 page_shift;
14f853f1 187 u64 offset; /* in pages */
fe26e527 188 u64 size; /* window size in pages */
54738c09
DG
189 struct page *pages[0];
190};
191
bc5ad3f3
BH
192/* XICS components, defined in book3s_xics.c */
193struct kvmppc_xics;
194struct kvmppc_icp;
195
8936dda4
PM
196/*
197 * The reverse mapping array has one entry for each HPTE,
198 * which stores the guest's view of the second word of the HPTE
06ce2c63
PM
199 * (including the guest physical address of the mapping),
200 * plus forward and backward pointers in a doubly-linked ring
201 * of HPTEs that map the same host page. The pointers in this
202 * ring are 32-bit HPTE indexes, to save space.
8936dda4
PM
203 */
204struct revmap_entry {
205 unsigned long guest_rpte;
06ce2c63 206 unsigned int forw, back;
8936dda4
PM
207};
208
06ce2c63 209/*
a66b48c3 210 * We use the top bit of each memslot->arch.rmap entry as a lock bit,
06ce2c63
PM
211 * and bit 32 as a present flag. The bottom 32 bits are the
212 * index in the guest HPT of a HPTE that points to the page.
213 */
214#define KVMPPC_RMAP_LOCK_BIT 63
bad3b507 215#define KVMPPC_RMAP_RC_SHIFT 32
08fe1e7b 216#define KVMPPC_RMAP_CHG_SHIFT 48
bad3b507
PM
217#define KVMPPC_RMAP_REFERENCED (HPTE_R_R << KVMPPC_RMAP_RC_SHIFT)
218#define KVMPPC_RMAP_CHANGED (HPTE_R_C << KVMPPC_RMAP_RC_SHIFT)
08fe1e7b 219#define KVMPPC_RMAP_CHG_ORDER (0x3ful << KVMPPC_RMAP_CHG_SHIFT)
06ce2c63
PM
220#define KVMPPC_RMAP_PRESENT 0x100000000ul
221#define KVMPPC_RMAP_INDEX 0xfffffffful
222
db3fe4eb 223struct kvm_arch_memory_slot {
9975f5e3 224#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
d89cc617 225 unsigned long *rmap;
9975f5e3 226#endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
db3fe4eb
TY
227};
228
bbf45ba5 229struct kvm_arch {
d30f6e48 230 unsigned int lpid;
9975f5e3 231#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
de56a948 232 unsigned long hpt_virt;
8936dda4 233 struct revmap_entry *revmap;
de56a948
PM
234 unsigned int host_lpid;
235 unsigned long host_lpcr;
236 unsigned long sdr1;
237 unsigned long host_sdr1;
238 int tlbie_lock;
aa04b4cc 239 unsigned long lpcr;
697d3899 240 unsigned long vrma_slb_v;
31037eca 241 int hpte_setup_done;
32fad281
PM
242 u32 hpt_order;
243 atomic_t vcpus_running;
1b400ba0 244 u32 online_vcores;
32fad281
PM
245 unsigned long hpt_npte;
246 unsigned long hpt_mask;
44e5f6be 247 atomic_t hpte_mod_interest;
1b400ba0 248 cpumask_t need_tlb_flush;
fa61a4e3 249 int hpt_cma_alloc;
e23a808b
PM
250 struct dentry *debugfs_dir;
251 struct dentry *htab_dentry;
9975f5e3 252#endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
7aa79938 253#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
9308ab8e
PM
254 struct mutex hpt_mutex;
255#endif
f31e65e1
BH
256#ifdef CONFIG_PPC_BOOK3S_64
257 struct list_head spapr_tce_tables;
8e591cb7 258 struct list_head rtas_tokens;
699a0ea0 259 DECLARE_BITMAP(enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
f31e65e1 260#endif
de9ba2f3
AG
261#ifdef CONFIG_KVM_MPIC
262 struct openpic *mpic;
263#endif
bc5ad3f3
BH
264#ifdef CONFIG_KVM_XICS
265 struct kvmppc_xics *xics;
266#endif
cbbc58d4 267 struct kvmppc_ops *kvm_ops;
1287cb3f
AG
268#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
269 /* This array can grow quite large, keep it at the end */
270 struct kvmppc_vcore *vcores[KVM_MAX_VCORES];
271#endif
bbf45ba5
HB
272};
273
371fefd6
PM
274/*
275 * Struct for a virtual core.
7d6c40da
PM
276 * Note: entry_exit_map combines a bitmap of threads that have entered
277 * in the bottom 8 bits and a bitmap of threads that have exited in the
278 * next 8 bits. This is so that we can atomically set the entry bit
279 * iff the exit map is 0 without taking a lock.
371fefd6
PM
280 */
281struct kvmppc_vcore {
282 int n_runnable;
371fefd6 283 int num_threads;
7d6c40da 284 int entry_exit_map;
19ccb76a 285 int napping_threads;
e0b7ec05 286 int first_vcpuid;
371fefd6 287 u16 pcpu;
1b400ba0 288 u16 last_cpu;
19ccb76a 289 u8 vcore_state;
371fefd6 290 u8 in_guest;
ec257165 291 struct kvmppc_vcore *master_vcore;
371fefd6 292 struct list_head runnable_threads;
ec257165 293 struct list_head preempt_list;
371fefd6 294 spinlock_t lock;
8577370f 295 struct swait_queue_head wq;
2711e248 296 spinlock_t stoltb_lock; /* protects stolen_tb and preempt_tb */
0456ec4f
PM
297 u64 stolen_tb;
298 u64 preempt_tb;
299 struct kvm_vcpu *runner;
e0b7ec05 300 struct kvm *kvm;
93b0f4dc 301 u64 tb_offset; /* guest timebase - host timebase */
a0144e2a 302 ulong lpcr;
388cc6e1
PM
303 u32 arch_compat;
304 ulong pcr;
b005255e 305 ulong dpdes; /* doorbell state (POWER8) */
90fd09f8 306 ulong conferring_threads;
371fefd6
PM
307};
308
7d6c40da
PM
309#define VCORE_ENTRY_MAP(vc) ((vc)->entry_exit_map & 0xff)
310#define VCORE_EXIT_MAP(vc) ((vc)->entry_exit_map >> 8)
311#define VCORE_IS_EXITING(vc) (VCORE_EXIT_MAP(vc) != 0)
371fefd6 312
b4deba5c
PM
313/* This bit is used when a vcore exit is triggered from outside the vcore */
314#define VCORE_EXIT_REQ 0x10000
315
ec257165
PM
316/*
317 * Values for vcore_state.
318 * Note that these are arranged such that lower values
319 * (< VCORE_SLEEPING) don't require stolen time accounting
320 * on load/unload, and higher values do.
321 */
19ccb76a 322#define VCORE_INACTIVE 0
ec257165
PM
323#define VCORE_PREEMPT 1
324#define VCORE_PIGGYBACK 2
325#define VCORE_SLEEPING 3
326#define VCORE_RUNNING 4
327#define VCORE_EXITING 5
19ccb76a 328
2e25aa5f
PM
329/*
330 * Struct used to manage memory for a virtual processor area
331 * registered by a PAPR guest. There are three types of area
332 * that a guest can register.
333 */
334struct kvmppc_vpa {
c35635ef 335 unsigned long gpa; /* Current guest phys addr */
2e25aa5f
PM
336 void *pinned_addr; /* Address in kernel linear mapping */
337 void *pinned_end; /* End of region */
338 unsigned long next_gpa; /* Guest phys addr for update */
339 unsigned long len; /* Number of bytes required */
340 u8 update_pending; /* 1 => update pinned_addr from next_gpa */
c35635ef 341 bool dirty; /* true => area has been modified by kernel */
2e25aa5f
PM
342};
343
ca95150b 344struct kvmppc_pte {
af7b4d10 345 ulong eaddr;
ca95150b 346 u64 vpage;
af7b4d10 347 ulong raddr;
3ed9c6d2
AG
348 bool may_read : 1;
349 bool may_write : 1;
350 bool may_execute : 1;
a4a0f252 351 u8 page_size; /* MMU_PAGE_xxx */
ca95150b
AG
352};
353
354struct kvmppc_mmu {
355 /* book3s_64 only */
356 void (*slbmte)(struct kvm_vcpu *vcpu, u64 rb, u64 rs);
357 u64 (*slbmfee)(struct kvm_vcpu *vcpu, u64 slb_nr);
358 u64 (*slbmfev)(struct kvm_vcpu *vcpu, u64 slb_nr);
359 void (*slbie)(struct kvm_vcpu *vcpu, u64 slb_nr);
360 void (*slbia)(struct kvm_vcpu *vcpu);
361 /* book3s */
362 void (*mtsrin)(struct kvm_vcpu *vcpu, u32 srnum, ulong value);
363 u32 (*mfsrin)(struct kvm_vcpu *vcpu, u32 srnum);
93b159b4
PM
364 int (*xlate)(struct kvm_vcpu *vcpu, gva_t eaddr,
365 struct kvmppc_pte *pte, bool data, bool iswrite);
ca95150b
AG
366 void (*reset_msr)(struct kvm_vcpu *vcpu);
367 void (*tlbie)(struct kvm_vcpu *vcpu, ulong addr, bool large);
af7b4d10 368 int (*esid_to_vsid)(struct kvm_vcpu *vcpu, ulong esid, u64 *vsid);
ca95150b
AG
369 u64 (*ea_to_vp)(struct kvm_vcpu *vcpu, gva_t eaddr, bool data);
370 bool (*is_dcbz32)(struct kvm_vcpu *vcpu);
371};
372
c4befc58
PM
373struct kvmppc_slb {
374 u64 esid;
375 u64 vsid;
376 u64 orige;
377 u64 origv;
378 bool valid : 1;
379 bool Ks : 1;
380 bool Kp : 1;
381 bool nx : 1;
382 bool large : 1; /* PTEs are 16MB */
383 bool tb : 1; /* 1TB segment */
384 bool class : 1;
a4a0f252 385 u8 base_page_size; /* MMU_PAGE_xxx */
ca95150b
AG
386};
387
b6c295df
PM
388/* Struct used to accumulate timing information in HV real mode code */
389struct kvmhv_tb_accumulator {
390 u64 seqcount; /* used to synchronize access, also count * 2 */
391 u64 tb_total; /* total time in timebase ticks */
392 u64 tb_min; /* min time */
393 u64 tb_max; /* max time */
394};
395
6df8d3fc
BB
396# ifdef CONFIG_PPC_FSL_BOOK3E
397#define KVMPPC_BOOKE_IAC_NUM 2
398#define KVMPPC_BOOKE_DAC_NUM 2
399# else
400#define KVMPPC_BOOKE_IAC_NUM 4
401#define KVMPPC_BOOKE_DAC_NUM 2
402# endif
403#define KVMPPC_BOOKE_MAX_IAC 4
404#define KVMPPC_BOOKE_MAX_DAC 2
405
5df554ad
SW
406/* KVMPPC_EPR_USER takes precedence over KVMPPC_EPR_KERNEL */
407#define KVMPPC_EPR_NONE 0 /* EPR not supported */
408#define KVMPPC_EPR_USER 1 /* exit to userspace to fill EPR */
409#define KVMPPC_EPR_KERNEL 2 /* in-kernel irqchip */
410
eb1e4f43
SW
411#define KVMPPC_IRQ_DEFAULT 0
412#define KVMPPC_IRQ_MPIC 1
bc5ad3f3 413#define KVMPPC_IRQ_XICS 2
eb1e4f43
SW
414
415struct openpic;
416
bbf45ba5 417struct kvm_vcpu_arch {
ca95150b 418 ulong host_stack;
bbf45ba5 419 u32 host_pid;
00c3a37c 420#ifdef CONFIG_PPC_BOOK3S
c4befc58 421 struct kvmppc_slb slb[64];
de56a948 422 int slb_max; /* 1 + index of last valid entry in slb[] */
c4befc58 423 int slb_nr; /* total number of entries in SLB */
ca95150b 424 struct kvmppc_mmu mmu;
3ff95502
PM
425 struct kvmppc_vcpu_book3s *book3s;
426#endif
427#ifdef CONFIG_PPC_BOOK3S_32
428 struct kvmppc_book3s_shadow_vcpu *shadow_vcpu;
ca95150b 429#endif
bbf45ba5 430
5cf8ca22 431 ulong gpr[32];
bbf45ba5 432
efff1912 433 struct thread_fp_state fp;
180a34d2 434
4cd35f67
SW
435#ifdef CONFIG_SPE
436 ulong evr[32];
437 ulong spefscr;
438 ulong host_spefscr;
439 u64 acc;
440#endif
180a34d2 441#ifdef CONFIG_ALTIVEC
efff1912 442 struct thread_vr_state vr;
180a34d2
AG
443#endif
444
d30f6e48
SW
445#ifdef CONFIG_KVM_BOOKE_HV
446 u32 host_mas4;
447 u32 host_mas6;
448 u32 shadow_epcr;
d30f6e48
SW
449 u32 shadow_msrp;
450 u32 eplc;
451 u32 epsc;
452 u32 oldpir;
453#endif
454
62b4db00
AG
455#if defined(CONFIG_BOOKE)
456#if defined(CONFIG_KVM_BOOKE_HV) || defined(CONFIG_64BIT)
457 u32 epcr;
458#endif
459#endif
460
5aa9e2f4
AG
461#ifdef CONFIG_PPC_BOOK3S
462 /* For Gekko paired singles */
463 u32 qpr[32];
464#endif
465
5cf8ca22 466 ulong pc;
5cf8ca22
HB
467 ulong ctr;
468 ulong lr;
e14e7a1e 469#ifdef CONFIG_PPC_BOOK3S
b005255e 470 ulong tar;
e14e7a1e 471#endif
7e57cba0 472
5cf8ca22 473 ulong xer;
7e57cba0 474 u32 cr;
bbf45ba5 475
00c3a37c 476#ifdef CONFIG_PPC_BOOK3S
ca95150b 477 ulong hflags;
180a34d2 478 ulong guest_owned_ext;
de56a948
PM
479 ulong purr;
480 ulong spurr;
b005255e
MN
481 ulong ic;
482 ulong vtb;
de56a948
PM
483 ulong dscr;
484 ulong amr;
485 ulong uamor;
b005255e 486 ulong iamr;
de56a948 487 u32 ctrl;
8563bf52 488 u32 dabrx;
de56a948 489 ulong dabr;
b005255e
MN
490 ulong dawr;
491 ulong dawrx;
492 ulong ciabr;
0acb9111 493 ulong cfar;
4b8473c9 494 ulong ppr;
f35f3a48 495 u32 pspb;
b005255e 496 ulong fscr;
616dff86 497 ulong shadow_fscr;
b005255e
MN
498 ulong ebbhr;
499 ulong ebbrr;
500 ulong bescr;
501 ulong csigr;
502 ulong tacr;
503 ulong tcscr;
504 ulong acop;
505 ulong wort;
a2d56020 506 ulong shadow_srr1;
ca95150b 507#endif
eab17672 508 u32 vrsave; /* also USPRG0 */
bbf45ba5 509 u32 mmucr;
5fd8505e 510 /* shadow_msr is unused for BookE HV */
ecee273f 511 ulong shadow_msr;
5cf8ca22
HB
512 ulong csrr0;
513 ulong csrr1;
514 ulong dsrr0;
515 ulong dsrr1;
5ce941ee
SW
516 ulong mcsrr0;
517 ulong mcsrr1;
518 ulong mcsr;
bbf45ba5 519 u32 dec;
21bd000a 520#ifdef CONFIG_BOOKE
bbf45ba5 521 u32 decar;
21bd000a 522#endif
3cd60e31
AK
523 /* Time base value when we entered the guest */
524 u64 entry_tb;
8f42ab27 525 u64 entry_vtb;
06da28e7 526 u64 entry_ic;
bbf45ba5 527 u32 tcr;
dfd4d47e 528 ulong tsr; /* we need to perform set/clr_bits() which requires ulong */
bb3a8a17 529 u32 ivor[64];
5cf8ca22 530 ulong ivpr;
ca95150b 531 u32 pvr;
49dd2c49
HB
532
533 u32 shadow_pid;
dd9ebf1f 534 u32 shadow_pid1;
bbf45ba5 535 u32 pid;
49dd2c49
HB
536 u32 swap_pid;
537
bbf45ba5
HB
538 u32 ccr0;
539 u32 ccr1;
f7b200af 540 u32 dbsr;
bbf45ba5 541
b005255e 542 u64 mmcr[5];
9e368f29 543 u32 pmc[8];
b005255e 544 u32 spmc[2];
14941789
PM
545 u64 siar;
546 u64 sdar;
b005255e 547 u64 sier;
7b490411
MN
548#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
549 u64 tfhar;
550 u64 texasr;
551 u64 tfiar;
552
553 u32 cr_tm;
554 u64 lr_tm;
555 u64 ctr_tm;
556 u64 amr_tm;
557 u64 ppr_tm;
558 u64 dscr_tm;
559 u64 tar_tm;
560
561 ulong gpr_tm[32];
562
563 struct thread_fp_state fp_tm;
564
565 struct thread_vr_state vr_tm;
566 u32 vrsave_tm; /* also USPRG0 */
567
568#endif
de56a948 569
73e75b41 570#ifdef CONFIG_KVM_EXIT_TIMING
09000adb 571 struct mutex exit_timing_lock;
7b701591
HB
572 struct kvmppc_exit_timing timing_exit;
573 struct kvmppc_exit_timing timing_last_enter;
73e75b41
HB
574 u32 last_exit_type;
575 u32 timing_count_type[__NUMBER_OF_KVM_EXIT_TYPES];
576 u64 timing_sum_duration[__NUMBER_OF_KVM_EXIT_TYPES];
577 u64 timing_sum_quad_duration[__NUMBER_OF_KVM_EXIT_TYPES];
578 u64 timing_min_duration[__NUMBER_OF_KVM_EXIT_TYPES];
579 u64 timing_max_duration[__NUMBER_OF_KVM_EXIT_TYPES];
580 u64 timing_last_exit;
581 struct dentry *debugfs_exit_timing;
582#endif
583
de56a948
PM
584#ifdef CONFIG_PPC_BOOK3S
585 ulong fault_dar;
586 u32 fault_dsisr;
e5ee5422 587 unsigned long intr_msr;
de56a948
PM
588#endif
589
0604675f 590#ifdef CONFIG_BOOKE
5cf8ca22
HB
591 ulong fault_dear;
592 ulong fault_esr;
daf5e271
LY
593 ulong queued_dear;
594 ulong queued_esr;
f61c94bb
BB
595 spinlock_t wdt_lock;
596 struct timer_list wdt_timer;
8fdd21a2 597 u32 tlbcfg[4];
307d9008 598 u32 tlbps[4];
8fdd21a2 599 u32 mmucfg;
9a6061d7 600 u32 eptcfg;
d30f6e48 601 u32 epr;
99e99d19 602 u64 sprg9;
debf27d6 603 u32 pwrmgtcr0;
15b708be 604 u32 crit_save;
ce11e48b 605 /* guest debug registers*/
547465ef 606 struct debug_reg dbg_reg;
0604675f 607#endif
bbf45ba5 608 gpa_t paddr_accessed;
6020c0f6 609 gva_t vaddr_accessed;
08c9a188 610 pgd_t *pgdir;
bbf45ba5
HB
611
612 u8 io_gpr; /* GPR used as IO source/target */
d078eed3 613 u8 mmio_host_swabbed;
3587d534 614 u8 mmio_sign_extend;
ad0a048b
AG
615 u8 osi_needed;
616 u8 osi_enabled;
9432ba60 617 u8 papr_enabled;
f61c94bb 618 u8 watchdog_enabled;
af8f38b3
AG
619 u8 sane;
620 u8 cpu_type;
de56a948 621 u8 hcall_needed;
5df554ad 622 u8 epr_flags; /* KVMPPC_EPR_xxx */
1c810636 623 u8 epr_needed;
bbf45ba5
HB
624
625 u32 cpr0_cfgaddr; /* holds the last set cpr0_cfgaddr */
626
544c6761 627 struct hrtimer dec_timer;
ca95150b 628 u64 dec_jiffies;
de56a948 629 u64 dec_expires;
bbf45ba5 630 unsigned long pending_exceptions;
a8606e20
PM
631 u8 ceded;
632 u8 prodded;
de56a948 633 u32 last_inst;
a8606e20 634
8577370f 635 struct swait_queue_head *wqp;
371fefd6
PM
636 struct kvmppc_vcore *vcore;
637 int ret;
de56a948 638 int trap;
371fefd6
PM
639 int state;
640 int ptid;
ec257165 641 int thread_cpu;
19ccb76a 642 bool timer_running;
371fefd6
PM
643 wait_queue_head_t cpu_run;
644
96bc451a 645 struct kvm_vcpu_arch_shared *shared;
5deb8e7a
AG
646#if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
647 bool shared_big_endian;
648#endif
beb03f14
AG
649 unsigned long magic_page_pa; /* phys addr to map the magic page to */
650 unsigned long magic_page_ea; /* effect. addr to map the magic page to */
f3383cf8 651 bool disable_kernel_nx;
de56a948 652
eb1e4f43
SW
653 int irq_type; /* one of KVM_IRQ_* */
654 int irq_cpu_id;
655 struct openpic *mpic; /* KVM_IRQ_MPIC */
bc5ad3f3
BH
656#ifdef CONFIG_KVM_XICS
657 struct kvmppc_icp *icp; /* XICS presentation controller */
658#endif
eb1e4f43 659
9975f5e3 660#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
de56a948 661 struct kvm_vcpu_arch_shared shregs;
371fefd6 662
697d3899
PM
663 unsigned long pgfault_addr;
664 long pgfault_index;
665 unsigned long pgfault_hpte[2];
666
371fefd6
PM
667 struct list_head run_list;
668 struct task_struct *run_task;
669 struct kvm_run *kvm_run;
2e25aa5f
PM
670
671 spinlock_t vpa_update_lock;
672 struct kvmppc_vpa vpa;
673 struct kvmppc_vpa dtl;
674 struct dtl_entry *dtl_ptr;
675 unsigned long dtl_index;
0456ec4f 676 u64 stolen_logged;
2e25aa5f 677 struct kvmppc_vpa slb_shadow;
c7b67670
PM
678
679 spinlock_t tbacct_lock;
680 u64 busy_stolen;
681 u64 busy_preempt;
4a157d61
PM
682
683 u32 emul_inst;
de56a948 684#endif
b6c295df
PM
685
686#ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
687 struct kvmhv_tb_accumulator *cur_activity; /* What we're timing */
688 u64 cur_tb_start; /* when it started */
689 struct kvmhv_tb_accumulator rm_entry; /* real-mode entry code */
690 struct kvmhv_tb_accumulator rm_intr; /* real-mode intr handling */
691 struct kvmhv_tb_accumulator rm_exit; /* real-mode exit code */
692 struct kvmhv_tb_accumulator guest_time; /* guest execution */
693 struct kvmhv_tb_accumulator cede_time; /* time napping inside guest */
694
695 struct dentry *debugfs_dir;
696 struct dentry *debugfs_timings;
697#endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
bbf45ba5
HB
698};
699
efff1912
PM
700#define VCPU_FPR(vcpu, i) (vcpu)->arch.fp.fpr[i][TS_FPROFFSET]
701
19ccb76a 702/* Values for vcpu->arch.state */
8455d79e
PM
703#define KVMPPC_VCPU_NOTREADY 0
704#define KVMPPC_VCPU_RUNNABLE 1
c7b67670 705#define KVMPPC_VCPU_BUSY_IN_HOST 2
371fefd6 706
b3c5d3c2
AG
707/* Values for vcpu->arch.io_gpr */
708#define KVM_MMIO_REG_MASK 0x001f
709#define KVM_MMIO_REG_EXT_MASK 0xffe0
710#define KVM_MMIO_REG_GPR 0x0000
711#define KVM_MMIO_REG_FPR 0x0020
712#define KVM_MMIO_REG_QPR 0x0040
713#define KVM_MMIO_REG_FQPR 0x0060
714
2246f8b5 715#define __KVM_HAVE_ARCH_WQP
5df554ad 716#define __KVM_HAVE_CREATE_DEVICE
b6d33834 717
13a34e06 718static inline void kvm_arch_hardware_disable(void) {}
0865e636
RK
719static inline void kvm_arch_hardware_unsetup(void) {}
720static inline void kvm_arch_sync_events(struct kvm *kvm) {}
15f46015 721static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {}
0865e636
RK
722static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {}
723static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
724static inline void kvm_arch_exit(void) {}
3217f7c2
CD
725static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
726static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
0865e636 727
bbf45ba5 728#endif /* __POWERPC_KVM_HOST_H__ */
This page took 0.439003 seconds and 5 git commands to generate.