]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/powerpc/include/asm/kvm_host.h
KVM: PPC: VFIO: Add in-kernel acceleration for VFIO
[karo-tx-linux.git] / arch / powerpc / include / asm / kvm_host.h
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>
24 #include <linux/hrtimer.h>
25 #include <linux/interrupt.h>
26 #include <linux/types.h>
27 #include <linux/kvm_types.h>
28 #include <linux/threads.h>
29 #include <linux/spinlock.h>
30 #include <linux/kvm_para.h>
31 #include <linux/list.h>
32 #include <linux/atomic.h>
33 #include <asm/kvm_asm.h>
34 #include <asm/processor.h>
35 #include <asm/page.h>
36 #include <asm/cacheflush.h>
37 #include <asm/hvcall.h>
38
39 #define KVM_MAX_VCPUS           NR_CPUS
40 #define KVM_MAX_VCORES          NR_CPUS
41 #define KVM_USER_MEM_SLOTS      512
42
43 #include <asm/cputhreads.h>
44 #define KVM_MAX_VCPU_ID                (threads_per_subcore * KVM_MAX_VCORES)
45
46 #define __KVM_HAVE_ARCH_INTC_INITIALIZED
47
48 #define KVM_HALT_POLL_NS_DEFAULT 10000  /* 10 us */
49
50 /* These values are internal and can be increased later */
51 #define KVM_NR_IRQCHIPS          1
52 #define KVM_IRQCHIP_NUM_PINS     256
53
54 /* PPC-specific vcpu->requests bit members */
55 #define KVM_REQ_WATCHDOG           8
56 #define KVM_REQ_EPR_EXIT           9
57
58 #include <linux/mmu_notifier.h>
59
60 #define KVM_ARCH_WANT_MMU_NOTIFIER
61
62 extern int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
63 extern int kvm_unmap_hva_range(struct kvm *kvm,
64                                unsigned long start, unsigned long end);
65 extern int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end);
66 extern int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);
67 extern void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte);
68
69 static inline void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm,
70                                                          unsigned long address)
71 {
72 }
73
74 #define HPTEG_CACHE_NUM                 (1 << 15)
75 #define HPTEG_HASH_BITS_PTE             13
76 #define HPTEG_HASH_BITS_PTE_LONG        12
77 #define HPTEG_HASH_BITS_VPTE            13
78 #define HPTEG_HASH_BITS_VPTE_LONG       5
79 #define HPTEG_HASH_BITS_VPTE_64K        11
80 #define HPTEG_HASH_NUM_PTE              (1 << HPTEG_HASH_BITS_PTE)
81 #define HPTEG_HASH_NUM_PTE_LONG         (1 << HPTEG_HASH_BITS_PTE_LONG)
82 #define HPTEG_HASH_NUM_VPTE             (1 << HPTEG_HASH_BITS_VPTE)
83 #define HPTEG_HASH_NUM_VPTE_LONG        (1 << HPTEG_HASH_BITS_VPTE_LONG)
84 #define HPTEG_HASH_NUM_VPTE_64K         (1 << HPTEG_HASH_BITS_VPTE_64K)
85
86 /* Physical Address Mask - allowed range of real mode RAM access */
87 #define KVM_PAM                 0x0fffffffffffffffULL
88
89 struct lppaca;
90 struct slb_shadow;
91 struct dtl_entry;
92
93 struct kvmppc_vcpu_book3s;
94 struct kvmppc_book3s_shadow_vcpu;
95
96 struct kvm_vm_stat {
97         ulong remote_tlb_flush;
98 };
99
100 struct kvm_vcpu_stat {
101         u64 sum_exits;
102         u64 mmio_exits;
103         u64 signal_exits;
104         u64 light_exits;
105         /* Account for special types of light exits: */
106         u64 itlb_real_miss_exits;
107         u64 itlb_virt_miss_exits;
108         u64 dtlb_real_miss_exits;
109         u64 dtlb_virt_miss_exits;
110         u64 syscall_exits;
111         u64 isi_exits;
112         u64 dsi_exits;
113         u64 emulated_inst_exits;
114         u64 dec_exits;
115         u64 ext_intr_exits;
116         u64 halt_poll_success_ns;
117         u64 halt_poll_fail_ns;
118         u64 halt_wait_ns;
119         u64 halt_successful_poll;
120         u64 halt_attempted_poll;
121         u64 halt_successful_wait;
122         u64 halt_poll_invalid;
123         u64 halt_wakeup;
124         u64 dbell_exits;
125         u64 gdbell_exits;
126         u64 ld;
127         u64 st;
128 #ifdef CONFIG_PPC_BOOK3S
129         u64 pf_storage;
130         u64 pf_instruc;
131         u64 sp_storage;
132         u64 sp_instruc;
133         u64 queue_intr;
134         u64 ld_slow;
135         u64 st_slow;
136 #endif
137         u64 pthru_all;
138         u64 pthru_host;
139         u64 pthru_bad_aff;
140 };
141
142 enum kvm_exit_types {
143         MMIO_EXITS,
144         SIGNAL_EXITS,
145         ITLB_REAL_MISS_EXITS,
146         ITLB_VIRT_MISS_EXITS,
147         DTLB_REAL_MISS_EXITS,
148         DTLB_VIRT_MISS_EXITS,
149         SYSCALL_EXITS,
150         ISI_EXITS,
151         DSI_EXITS,
152         EMULATED_INST_EXITS,
153         EMULATED_MTMSRWE_EXITS,
154         EMULATED_WRTEE_EXITS,
155         EMULATED_MTSPR_EXITS,
156         EMULATED_MFSPR_EXITS,
157         EMULATED_MTMSR_EXITS,
158         EMULATED_MFMSR_EXITS,
159         EMULATED_TLBSX_EXITS,
160         EMULATED_TLBWE_EXITS,
161         EMULATED_RFI_EXITS,
162         EMULATED_RFCI_EXITS,
163         EMULATED_RFDI_EXITS,
164         DEC_EXITS,
165         EXT_INTR_EXITS,
166         HALT_WAKEUP,
167         USR_PR_INST,
168         FP_UNAVAIL,
169         DEBUG_EXITS,
170         TIMEINGUEST,
171         DBELL_EXITS,
172         GDBELL_EXITS,
173         __NUMBER_OF_KVM_EXIT_TYPES
174 };
175
176 /* allow access to big endian 32bit upper/lower parts and 64bit var */
177 struct kvmppc_exit_timing {
178         union {
179                 u64 tv64;
180                 struct {
181                         u32 tbu, tbl;
182                 } tv32;
183         };
184 };
185
186 struct kvmppc_pginfo {
187         unsigned long pfn;
188         atomic_t refcnt;
189 };
190
191 struct kvmppc_spapr_tce_iommu_table {
192         struct rcu_head rcu;
193         struct list_head next;
194         struct iommu_table *tbl;
195         struct kref kref;
196 };
197
198 struct kvmppc_spapr_tce_table {
199         struct list_head list;
200         struct kvm *kvm;
201         u64 liobn;
202         struct rcu_head rcu;
203         u32 page_shift;
204         u64 offset;             /* in pages */
205         u64 size;               /* window size in pages */
206         struct list_head iommu_tables;
207         struct page *pages[0];
208 };
209
210 /* XICS components, defined in book3s_xics.c */
211 struct kvmppc_xics;
212 struct kvmppc_icp;
213
214 struct kvmppc_passthru_irqmap;
215
216 /*
217  * The reverse mapping array has one entry for each HPTE,
218  * which stores the guest's view of the second word of the HPTE
219  * (including the guest physical address of the mapping),
220  * plus forward and backward pointers in a doubly-linked ring
221  * of HPTEs that map the same host page.  The pointers in this
222  * ring are 32-bit HPTE indexes, to save space.
223  */
224 struct revmap_entry {
225         unsigned long guest_rpte;
226         unsigned int forw, back;
227 };
228
229 /*
230  * We use the top bit of each memslot->arch.rmap entry as a lock bit,
231  * and bit 32 as a present flag.  The bottom 32 bits are the
232  * index in the guest HPT of a HPTE that points to the page.
233  */
234 #define KVMPPC_RMAP_LOCK_BIT    63
235 #define KVMPPC_RMAP_RC_SHIFT    32
236 #define KVMPPC_RMAP_CHG_SHIFT   48
237 #define KVMPPC_RMAP_REFERENCED  (HPTE_R_R << KVMPPC_RMAP_RC_SHIFT)
238 #define KVMPPC_RMAP_CHANGED     (HPTE_R_C << KVMPPC_RMAP_RC_SHIFT)
239 #define KVMPPC_RMAP_CHG_ORDER   (0x3ful << KVMPPC_RMAP_CHG_SHIFT)
240 #define KVMPPC_RMAP_PRESENT     0x100000000ul
241 #define KVMPPC_RMAP_INDEX       0xfffffffful
242
243 struct kvm_arch_memory_slot {
244 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
245         unsigned long *rmap;
246 #endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
247 };
248
249 struct kvm_hpt_info {
250         /* Host virtual (linear mapping) address of guest HPT */
251         unsigned long virt;
252         /* Array of reverse mapping entries for each guest HPTE */
253         struct revmap_entry *rev;
254         /* Guest HPT size is 2**(order) bytes */
255         u32 order;
256         /* 1 if HPT allocated with CMA, 0 otherwise */
257         int cma;
258 };
259
260 struct kvm_resize_hpt;
261
262 struct kvm_arch {
263         unsigned int lpid;
264 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
265         unsigned int tlb_sets;
266         struct kvm_hpt_info hpt;
267         atomic64_t mmio_update;
268         unsigned int host_lpid;
269         unsigned long host_lpcr;
270         unsigned long sdr1;
271         unsigned long host_sdr1;
272         int tlbie_lock;
273         unsigned long lpcr;
274         unsigned long vrma_slb_v;
275         int hpte_setup_done;
276         atomic_t vcpus_running;
277         u32 online_vcores;
278         atomic_t hpte_mod_interest;
279         cpumask_t need_tlb_flush;
280         cpumask_t cpu_in_guest;
281         u8 radix;
282         pgd_t *pgtable;
283         u64 process_table;
284         struct dentry *debugfs_dir;
285         struct dentry *htab_dentry;
286         struct kvm_resize_hpt *resize_hpt; /* protected by kvm->lock */
287 #endif /* CONFIG_KVM_BOOK3S_HV_POSSIBLE */
288 #ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
289         struct mutex hpt_mutex;
290 #endif
291 #ifdef CONFIG_PPC_BOOK3S_64
292         struct list_head spapr_tce_tables;
293         struct list_head rtas_tokens;
294         DECLARE_BITMAP(enabled_hcalls, MAX_HCALL_OPCODE/4 + 1);
295 #endif
296 #ifdef CONFIG_KVM_MPIC
297         struct openpic *mpic;
298 #endif
299 #ifdef CONFIG_KVM_XICS
300         struct kvmppc_xics *xics;
301         struct kvmppc_passthru_irqmap *pimap;
302 #endif
303         struct kvmppc_ops *kvm_ops;
304 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
305         /* This array can grow quite large, keep it at the end */
306         struct kvmppc_vcore *vcores[KVM_MAX_VCORES];
307 #endif
308 };
309
310 #define VCORE_ENTRY_MAP(vc)     ((vc)->entry_exit_map & 0xff)
311 #define VCORE_EXIT_MAP(vc)      ((vc)->entry_exit_map >> 8)
312 #define VCORE_IS_EXITING(vc)    (VCORE_EXIT_MAP(vc) != 0)
313
314 /* This bit is used when a vcore exit is triggered from outside the vcore */
315 #define VCORE_EXIT_REQ          0x10000
316
317 /*
318  * Values for vcore_state.
319  * Note that these are arranged such that lower values
320  * (< VCORE_SLEEPING) don't require stolen time accounting
321  * on load/unload, and higher values do.
322  */
323 #define VCORE_INACTIVE  0
324 #define VCORE_PREEMPT   1
325 #define VCORE_PIGGYBACK 2
326 #define VCORE_SLEEPING  3
327 #define VCORE_RUNNING   4
328 #define VCORE_EXITING   5
329 #define VCORE_POLLING   6
330
331 /*
332  * Struct used to manage memory for a virtual processor area
333  * registered by a PAPR guest.  There are three types of area
334  * that a guest can register.
335  */
336 struct kvmppc_vpa {
337         unsigned long gpa;      /* Current guest phys addr */
338         void *pinned_addr;      /* Address in kernel linear mapping */
339         void *pinned_end;       /* End of region */
340         unsigned long next_gpa; /* Guest phys addr for update */
341         unsigned long len;      /* Number of bytes required */
342         u8 update_pending;      /* 1 => update pinned_addr from next_gpa */
343         bool dirty;             /* true => area has been modified by kernel */
344 };
345
346 struct kvmppc_pte {
347         ulong eaddr;
348         u64 vpage;
349         ulong raddr;
350         bool may_read           : 1;
351         bool may_write          : 1;
352         bool may_execute        : 1;
353         unsigned long wimg;
354         u8 page_size;           /* MMU_PAGE_xxx */
355 };
356
357 struct kvmppc_mmu {
358         /* book3s_64 only */
359         void (*slbmte)(struct kvm_vcpu *vcpu, u64 rb, u64 rs);
360         u64  (*slbmfee)(struct kvm_vcpu *vcpu, u64 slb_nr);
361         u64  (*slbmfev)(struct kvm_vcpu *vcpu, u64 slb_nr);
362         void (*slbie)(struct kvm_vcpu *vcpu, u64 slb_nr);
363         void (*slbia)(struct kvm_vcpu *vcpu);
364         /* book3s */
365         void (*mtsrin)(struct kvm_vcpu *vcpu, u32 srnum, ulong value);
366         u32  (*mfsrin)(struct kvm_vcpu *vcpu, u32 srnum);
367         int  (*xlate)(struct kvm_vcpu *vcpu, gva_t eaddr,
368                       struct kvmppc_pte *pte, bool data, bool iswrite);
369         void (*reset_msr)(struct kvm_vcpu *vcpu);
370         void (*tlbie)(struct kvm_vcpu *vcpu, ulong addr, bool large);
371         int  (*esid_to_vsid)(struct kvm_vcpu *vcpu, ulong esid, u64 *vsid);
372         u64  (*ea_to_vp)(struct kvm_vcpu *vcpu, gva_t eaddr, bool data);
373         bool (*is_dcbz32)(struct kvm_vcpu *vcpu);
374 };
375
376 struct kvmppc_slb {
377         u64 esid;
378         u64 vsid;
379         u64 orige;
380         u64 origv;
381         bool valid      : 1;
382         bool Ks         : 1;
383         bool Kp         : 1;
384         bool nx         : 1;
385         bool large      : 1;    /* PTEs are 16MB */
386         bool tb         : 1;    /* 1TB segment */
387         bool class      : 1;
388         u8 base_page_size;      /* MMU_PAGE_xxx */
389 };
390
391 /* Struct used to accumulate timing information in HV real mode code */
392 struct kvmhv_tb_accumulator {
393         u64     seqcount;       /* used to synchronize access, also count * 2 */
394         u64     tb_total;       /* total time in timebase ticks */
395         u64     tb_min;         /* min time */
396         u64     tb_max;         /* max time */
397 };
398
399 #ifdef CONFIG_PPC_BOOK3S_64
400 struct kvmppc_irq_map {
401         u32     r_hwirq;
402         u32     v_hwirq;
403         struct irq_desc *desc;
404 };
405
406 #define KVMPPC_PIRQ_MAPPED      1024
407 struct kvmppc_passthru_irqmap {
408         int n_mapped;
409         struct kvmppc_irq_map mapped[KVMPPC_PIRQ_MAPPED];
410 };
411 #endif
412
413 # ifdef CONFIG_PPC_FSL_BOOK3E
414 #define KVMPPC_BOOKE_IAC_NUM    2
415 #define KVMPPC_BOOKE_DAC_NUM    2
416 # else
417 #define KVMPPC_BOOKE_IAC_NUM    4
418 #define KVMPPC_BOOKE_DAC_NUM    2
419 # endif
420 #define KVMPPC_BOOKE_MAX_IAC    4
421 #define KVMPPC_BOOKE_MAX_DAC    2
422
423 /* KVMPPC_EPR_USER takes precedence over KVMPPC_EPR_KERNEL */
424 #define KVMPPC_EPR_NONE         0 /* EPR not supported */
425 #define KVMPPC_EPR_USER         1 /* exit to userspace to fill EPR */
426 #define KVMPPC_EPR_KERNEL       2 /* in-kernel irqchip */
427
428 #define KVMPPC_IRQ_DEFAULT      0
429 #define KVMPPC_IRQ_MPIC         1
430 #define KVMPPC_IRQ_XICS         2
431
432 #define MMIO_HPTE_CACHE_SIZE    4
433
434 struct mmio_hpte_cache_entry {
435         unsigned long hpte_v;
436         unsigned long hpte_r;
437         unsigned long rpte;
438         unsigned long pte_index;
439         unsigned long eaddr;
440         unsigned long slb_v;
441         long mmio_update;
442         unsigned int slb_base_pshift;
443 };
444
445 struct mmio_hpte_cache {
446         struct mmio_hpte_cache_entry entry[MMIO_HPTE_CACHE_SIZE];
447         unsigned int index;
448 };
449
450 #define KVMPPC_VSX_COPY_NONE            0
451 #define KVMPPC_VSX_COPY_WORD            1
452 #define KVMPPC_VSX_COPY_DWORD           2
453 #define KVMPPC_VSX_COPY_DWORD_LOAD_DUMP 3
454
455 struct openpic;
456
457 struct kvm_vcpu_arch {
458         ulong host_stack;
459         u32 host_pid;
460 #ifdef CONFIG_PPC_BOOK3S
461         struct kvmppc_slb slb[64];
462         int slb_max;            /* 1 + index of last valid entry in slb[] */
463         int slb_nr;             /* total number of entries in SLB */
464         struct kvmppc_mmu mmu;
465         struct kvmppc_vcpu_book3s *book3s;
466 #endif
467 #ifdef CONFIG_PPC_BOOK3S_32
468         struct kvmppc_book3s_shadow_vcpu *shadow_vcpu;
469 #endif
470
471         ulong gpr[32];
472
473         struct thread_fp_state fp;
474
475 #ifdef CONFIG_SPE
476         ulong evr[32];
477         ulong spefscr;
478         ulong host_spefscr;
479         u64 acc;
480 #endif
481 #ifdef CONFIG_ALTIVEC
482         struct thread_vr_state vr;
483 #endif
484
485 #ifdef CONFIG_KVM_BOOKE_HV
486         u32 host_mas4;
487         u32 host_mas6;
488         u32 shadow_epcr;
489         u32 shadow_msrp;
490         u32 eplc;
491         u32 epsc;
492         u32 oldpir;
493 #endif
494
495 #if defined(CONFIG_BOOKE)
496 #if defined(CONFIG_KVM_BOOKE_HV) || defined(CONFIG_64BIT)
497         u32 epcr;
498 #endif
499 #endif
500
501 #ifdef CONFIG_PPC_BOOK3S
502         /* For Gekko paired singles */
503         u32 qpr[32];
504 #endif
505
506         ulong pc;
507         ulong ctr;
508         ulong lr;
509 #ifdef CONFIG_PPC_BOOK3S
510         ulong tar;
511 #endif
512
513         ulong xer;
514         u32 cr;
515
516 #ifdef CONFIG_PPC_BOOK3S
517         ulong hflags;
518         ulong guest_owned_ext;
519         ulong purr;
520         ulong spurr;
521         ulong ic;
522         ulong dscr;
523         ulong amr;
524         ulong uamor;
525         ulong iamr;
526         u32 ctrl;
527         u32 dabrx;
528         ulong dabr;
529         ulong dawr;
530         ulong dawrx;
531         ulong ciabr;
532         ulong cfar;
533         ulong ppr;
534         u32 pspb;
535         ulong fscr;
536         ulong shadow_fscr;
537         ulong ebbhr;
538         ulong ebbrr;
539         ulong bescr;
540         ulong csigr;
541         ulong tacr;
542         ulong tcscr;
543         ulong acop;
544         ulong wort;
545         ulong tid;
546         ulong psscr;
547         ulong shadow_srr1;
548 #endif
549         u32 vrsave; /* also USPRG0 */
550         u32 mmucr;
551         /* shadow_msr is unused for BookE HV */
552         ulong shadow_msr;
553         ulong csrr0;
554         ulong csrr1;
555         ulong dsrr0;
556         ulong dsrr1;
557         ulong mcsrr0;
558         ulong mcsrr1;
559         ulong mcsr;
560         u32 dec;
561 #ifdef CONFIG_BOOKE
562         u32 decar;
563 #endif
564         /* Time base value when we entered the guest */
565         u64 entry_tb;
566         u64 entry_vtb;
567         u64 entry_ic;
568         u32 tcr;
569         ulong tsr; /* we need to perform set/clr_bits() which requires ulong */
570         u32 ivor[64];
571         ulong ivpr;
572         u32 pvr;
573
574         u32 shadow_pid;
575         u32 shadow_pid1;
576         u32 pid;
577         u32 swap_pid;
578
579         u32 ccr0;
580         u32 ccr1;
581         u32 dbsr;
582
583         u64 mmcr[5];
584         u32 pmc[8];
585         u32 spmc[2];
586         u64 siar;
587         u64 sdar;
588         u64 sier;
589 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
590         u64 tfhar;
591         u64 texasr;
592         u64 tfiar;
593
594         u32 cr_tm;
595         u64 xer_tm;
596         u64 lr_tm;
597         u64 ctr_tm;
598         u64 amr_tm;
599         u64 ppr_tm;
600         u64 dscr_tm;
601         u64 tar_tm;
602
603         ulong gpr_tm[32];
604
605         struct thread_fp_state fp_tm;
606
607         struct thread_vr_state vr_tm;
608         u32 vrsave_tm; /* also USPRG0 */
609
610 #endif
611
612 #ifdef CONFIG_KVM_EXIT_TIMING
613         struct mutex exit_timing_lock;
614         struct kvmppc_exit_timing timing_exit;
615         struct kvmppc_exit_timing timing_last_enter;
616         u32 last_exit_type;
617         u32 timing_count_type[__NUMBER_OF_KVM_EXIT_TYPES];
618         u64 timing_sum_duration[__NUMBER_OF_KVM_EXIT_TYPES];
619         u64 timing_sum_quad_duration[__NUMBER_OF_KVM_EXIT_TYPES];
620         u64 timing_min_duration[__NUMBER_OF_KVM_EXIT_TYPES];
621         u64 timing_max_duration[__NUMBER_OF_KVM_EXIT_TYPES];
622         u64 timing_last_exit;
623         struct dentry *debugfs_exit_timing;
624 #endif
625
626 #ifdef CONFIG_PPC_BOOK3S
627         ulong fault_dar;
628         u32 fault_dsisr;
629         unsigned long intr_msr;
630         ulong fault_gpa;        /* guest real address of page fault (POWER9) */
631 #endif
632
633 #ifdef CONFIG_BOOKE
634         ulong fault_dear;
635         ulong fault_esr;
636         ulong queued_dear;
637         ulong queued_esr;
638         spinlock_t wdt_lock;
639         struct timer_list wdt_timer;
640         u32 tlbcfg[4];
641         u32 tlbps[4];
642         u32 mmucfg;
643         u32 eptcfg;
644         u32 epr;
645         u64 sprg9;
646         u32 pwrmgtcr0;
647         u32 crit_save;
648         /* guest debug registers*/
649         struct debug_reg dbg_reg;
650 #endif
651         gpa_t paddr_accessed;
652         gva_t vaddr_accessed;
653         pgd_t *pgdir;
654
655         u8 io_gpr; /* GPR used as IO source/target */
656         u8 mmio_host_swabbed;
657         u8 mmio_sign_extend;
658         /* conversion between single and double precision */
659         u8 mmio_sp64_extend;
660         /*
661          * Number of simulations for vsx.
662          * If we use 2*8bytes to simulate 1*16bytes,
663          * then the number should be 2 and
664          * mmio_vsx_copy_type=KVMPPC_VSX_COPY_DWORD.
665          * If we use 4*4bytes to simulate 1*16bytes,
666          * the number should be 4 and
667          * mmio_vsx_copy_type=KVMPPC_VSX_COPY_WORD.
668          */
669         u8 mmio_vsx_copy_nums;
670         u8 mmio_vsx_offset;
671         u8 mmio_vsx_copy_type;
672         u8 mmio_vsx_tx_sx_enabled;
673         u8 osi_needed;
674         u8 osi_enabled;
675         u8 papr_enabled;
676         u8 watchdog_enabled;
677         u8 sane;
678         u8 cpu_type;
679         u8 hcall_needed;
680         u8 epr_flags; /* KVMPPC_EPR_xxx */
681         u8 epr_needed;
682
683         u32 cpr0_cfgaddr; /* holds the last set cpr0_cfgaddr */
684
685         struct hrtimer dec_timer;
686         u64 dec_jiffies;
687         u64 dec_expires;
688         unsigned long pending_exceptions;
689         u8 ceded;
690         u8 prodded;
691         u32 last_inst;
692
693         struct swait_queue_head *wqp;
694         struct kvmppc_vcore *vcore;
695         int ret;
696         int trap;
697         int state;
698         int ptid;
699         int thread_cpu;
700         int prev_cpu;
701         bool timer_running;
702         wait_queue_head_t cpu_run;
703
704         struct kvm_vcpu_arch_shared *shared;
705 #if defined(CONFIG_PPC_BOOK3S_64) && defined(CONFIG_KVM_BOOK3S_PR_POSSIBLE)
706         bool shared_big_endian;
707 #endif
708         unsigned long magic_page_pa; /* phys addr to map the magic page to */
709         unsigned long magic_page_ea; /* effect. addr to map the magic page to */
710         bool disable_kernel_nx;
711
712         int irq_type;           /* one of KVM_IRQ_* */
713         int irq_cpu_id;
714         struct openpic *mpic;   /* KVM_IRQ_MPIC */
715 #ifdef CONFIG_KVM_XICS
716         struct kvmppc_icp *icp; /* XICS presentation controller */
717 #endif
718
719 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
720         struct kvm_vcpu_arch_shared shregs;
721
722         struct mmio_hpte_cache mmio_cache;
723         unsigned long pgfault_addr;
724         long pgfault_index;
725         unsigned long pgfault_hpte[2];
726         struct mmio_hpte_cache_entry *pgfault_cache;
727
728         struct task_struct *run_task;
729         struct kvm_run *kvm_run;
730
731         spinlock_t vpa_update_lock;
732         struct kvmppc_vpa vpa;
733         struct kvmppc_vpa dtl;
734         struct dtl_entry *dtl_ptr;
735         unsigned long dtl_index;
736         u64 stolen_logged;
737         struct kvmppc_vpa slb_shadow;
738
739         spinlock_t tbacct_lock;
740         u64 busy_stolen;
741         u64 busy_preempt;
742
743         u32 emul_inst;
744 #endif
745
746 #ifdef CONFIG_KVM_BOOK3S_HV_EXIT_TIMING
747         struct kvmhv_tb_accumulator *cur_activity;      /* What we're timing */
748         u64     cur_tb_start;                   /* when it started */
749         struct kvmhv_tb_accumulator rm_entry;   /* real-mode entry code */
750         struct kvmhv_tb_accumulator rm_intr;    /* real-mode intr handling */
751         struct kvmhv_tb_accumulator rm_exit;    /* real-mode exit code */
752         struct kvmhv_tb_accumulator guest_time; /* guest execution */
753         struct kvmhv_tb_accumulator cede_time;  /* time napping inside guest */
754
755         struct dentry *debugfs_dir;
756         struct dentry *debugfs_timings;
757 #endif /* CONFIG_KVM_BOOK3S_HV_EXIT_TIMING */
758 };
759
760 #define VCPU_FPR(vcpu, i)       (vcpu)->arch.fp.fpr[i][TS_FPROFFSET]
761 #define VCPU_VSX_FPR(vcpu, i, j)        ((vcpu)->arch.fp.fpr[i][j])
762 #define VCPU_VSX_VR(vcpu, i)            ((vcpu)->arch.vr.vr[i])
763
764 /* Values for vcpu->arch.state */
765 #define KVMPPC_VCPU_NOTREADY            0
766 #define KVMPPC_VCPU_RUNNABLE            1
767 #define KVMPPC_VCPU_BUSY_IN_HOST        2
768
769 /* Values for vcpu->arch.io_gpr */
770 #define KVM_MMIO_REG_MASK       0x001f
771 #define KVM_MMIO_REG_EXT_MASK   0xffe0
772 #define KVM_MMIO_REG_GPR        0x0000
773 #define KVM_MMIO_REG_FPR        0x0020
774 #define KVM_MMIO_REG_QPR        0x0040
775 #define KVM_MMIO_REG_FQPR       0x0060
776 #define KVM_MMIO_REG_VSX        0x0080
777
778 #define __KVM_HAVE_ARCH_WQP
779 #define __KVM_HAVE_CREATE_DEVICE
780
781 static inline void kvm_arch_hardware_disable(void) {}
782 static inline void kvm_arch_hardware_unsetup(void) {}
783 static inline void kvm_arch_sync_events(struct kvm *kvm) {}
784 static inline void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) {}
785 static inline void kvm_arch_flush_shadow_all(struct kvm *kvm) {}
786 static inline void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) {}
787 static inline void kvm_arch_exit(void) {}
788 static inline void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu) {}
789 static inline void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu) {}
790 static inline void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu) {}
791
792 #endif /* __POWERPC_KVM_HOST_H__ */