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