book3s.c 27.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
A
Alexander Graf 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (C) 2009. SUSE Linux Products GmbH. All rights reserved.
 *
 * Authors:
 *    Alexander Graf <agraf@suse.de>
 *    Kevin Wolf <mail@kevin-wolf.de>
 *
 * Description:
 * This file is derived from arch/powerpc/kvm/44x.c,
 * by Hollis Blanchard <hollisb@us.ibm.com>.
 */

#include <linux/kvm_host.h>
#include <linux/err.h>
16
#include <linux/export.h>
17
#include <linux/slab.h>
18 19
#include <linux/module.h>
#include <linux/miscdevice.h>
20 21 22 23
#include <linux/gfp.h>
#include <linux/sched.h>
#include <linux/vmalloc.h>
#include <linux/highmem.h>
A
Alexander Graf 已提交
24 25 26 27

#include <asm/reg.h>
#include <asm/cputable.h>
#include <asm/cacheflush.h>
28
#include <linux/uaccess.h>
A
Alexander Graf 已提交
29 30 31 32
#include <asm/io.h>
#include <asm/kvm_ppc.h>
#include <asm/kvm_book3s.h>
#include <asm/mmu_context.h>
33
#include <asm/page.h>
34
#include <asm/xive.h>
A
Alexander Graf 已提交
35

36
#include "book3s.h"
37 38
#include "trace.h"

39 40
#define VM_STAT(x, ...) offsetof(struct kvm, stat.x), KVM_STAT_VM, ## __VA_ARGS__
#define VCPU_STAT(x, ...) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU, ## __VA_ARGS__
A
Alexander Graf 已提交
41 42

/* #define EXIT_DEBUG */
43

A
Alexander Graf 已提交
44 45 46 47 48 49 50 51 52
struct kvm_stats_debugfs_item debugfs_entries[] = {
	{ "exits",       VCPU_STAT(sum_exits) },
	{ "mmio",        VCPU_STAT(mmio_exits) },
	{ "sig",         VCPU_STAT(signal_exits) },
	{ "sysc",        VCPU_STAT(syscall_exits) },
	{ "inst_emu",    VCPU_STAT(emulated_inst_exits) },
	{ "dec",         VCPU_STAT(dec_exits) },
	{ "ext_intr",    VCPU_STAT(ext_intr_exits) },
	{ "queue_intr",  VCPU_STAT(queue_intr) },
53 54 55
	{ "halt_poll_success_ns",	VCPU_STAT(halt_poll_success_ns) },
	{ "halt_poll_fail_ns",		VCPU_STAT(halt_poll_fail_ns) },
	{ "halt_wait_ns",		VCPU_STAT(halt_wait_ns) },
56
	{ "halt_successful_poll", VCPU_STAT(halt_successful_poll), },
57
	{ "halt_attempted_poll", VCPU_STAT(halt_attempted_poll), },
58
	{ "halt_successful_wait",	VCPU_STAT(halt_successful_wait) },
59
	{ "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
A
Alexander Graf 已提交
60 61 62 63 64 65 66 67 68
	{ "halt_wakeup", VCPU_STAT(halt_wakeup) },
	{ "pf_storage",  VCPU_STAT(pf_storage) },
	{ "sp_storage",  VCPU_STAT(sp_storage) },
	{ "pf_instruc",  VCPU_STAT(pf_instruc) },
	{ "sp_instruc",  VCPU_STAT(sp_instruc) },
	{ "ld",          VCPU_STAT(ld) },
	{ "ld_slow",     VCPU_STAT(ld_slow) },
	{ "st",          VCPU_STAT(st) },
	{ "st_slow",     VCPU_STAT(st_slow) },
69 70 71
	{ "pthru_all",       VCPU_STAT(pthru_all) },
	{ "pthru_host",      VCPU_STAT(pthru_host) },
	{ "pthru_bad_aff",   VCPU_STAT(pthru_bad_aff) },
72 73
	{ "largepages_2M",    VM_STAT(num_2M_pages, .mode = 0444) },
	{ "largepages_1G",    VM_STAT(num_1G_pages, .mode = 0444) },
A
Alexander Graf 已提交
74 75 76
	{ NULL }
};

77 78 79
static inline void kvmppc_update_int_pending(struct kvm_vcpu *vcpu,
			unsigned long pending_now, unsigned long old_pending)
{
80
	if (is_kvmppc_hv_enabled(vcpu->kvm))
81 82
		return;
	if (pending_now)
83
		kvmppc_set_int_pending(vcpu, 1);
84
	else if (old_pending)
85
		kvmppc_set_int_pending(vcpu, 0);
86 87 88 89 90 91 92 93
}

static inline bool kvmppc_critical_section(struct kvm_vcpu *vcpu)
{
	ulong crit_raw;
	ulong crit_r1;
	bool crit;

94
	if (is_kvmppc_hv_enabled(vcpu->kvm))
95 96
		return false;

97
	crit_raw = kvmppc_get_critical(vcpu);
98 99 100
	crit_r1 = kvmppc_get_gpr(vcpu, 1);

	/* Truncate crit indicators in 32 bit mode */
101
	if (!(kvmppc_get_msr(vcpu) & MSR_SF)) {
102 103 104 105 106 107 108
		crit_raw &= 0xffffffff;
		crit_r1 &= 0xffffffff;
	}

	/* Critical section when crit == r1 */
	crit = (crit_raw == crit_r1);
	/* ... and we're in supervisor mode */
109
	crit = crit && !(kvmppc_get_msr(vcpu) & MSR_PR);
110 111 112 113

	return crit;
}

A
Alexander Graf 已提交
114 115
void kvmppc_inject_interrupt(struct kvm_vcpu *vcpu, int vec, u64 flags)
{
116
	vcpu->kvm->arch.kvm_ops->inject_interrupt(vcpu, vec, flags);
A
Alexander Graf 已提交
117 118
}

119
static int kvmppc_book3s_vec2irqprio(unsigned int vec)
A
Alexander Graf 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
{
	unsigned int prio;

	switch (vec) {
	case 0x100: prio = BOOK3S_IRQPRIO_SYSTEM_RESET;		break;
	case 0x200: prio = BOOK3S_IRQPRIO_MACHINE_CHECK;	break;
	case 0x300: prio = BOOK3S_IRQPRIO_DATA_STORAGE;		break;
	case 0x380: prio = BOOK3S_IRQPRIO_DATA_SEGMENT;		break;
	case 0x400: prio = BOOK3S_IRQPRIO_INST_STORAGE;		break;
	case 0x480: prio = BOOK3S_IRQPRIO_INST_SEGMENT;		break;
	case 0x500: prio = BOOK3S_IRQPRIO_EXTERNAL;		break;
	case 0x600: prio = BOOK3S_IRQPRIO_ALIGNMENT;		break;
	case 0x700: prio = BOOK3S_IRQPRIO_PROGRAM;		break;
	case 0x800: prio = BOOK3S_IRQPRIO_FP_UNAVAIL;		break;
	case 0x900: prio = BOOK3S_IRQPRIO_DECREMENTER;		break;
	case 0xc00: prio = BOOK3S_IRQPRIO_SYSCALL;		break;
	case 0xd00: prio = BOOK3S_IRQPRIO_DEBUG;		break;
	case 0xf20: prio = BOOK3S_IRQPRIO_ALTIVEC;		break;
	case 0xf40: prio = BOOK3S_IRQPRIO_VSX;			break;
139
	case 0xf60: prio = BOOK3S_IRQPRIO_FAC_UNAVAIL;		break;
A
Alexander Graf 已提交
140 141 142
	default:    prio = BOOK3S_IRQPRIO_MAX;			break;
	}

143 144 145
	return prio;
}

146
void kvmppc_book3s_dequeue_irqprio(struct kvm_vcpu *vcpu,
147 148
					  unsigned int vec)
{
149 150
	unsigned long old_pending = vcpu->arch.pending_exceptions;

151 152
	clear_bit(kvmppc_book3s_vec2irqprio(vec),
		  &vcpu->arch.pending_exceptions);
153

154 155
	kvmppc_update_int_pending(vcpu, vcpu->arch.pending_exceptions,
				  old_pending);
156 157
}

158 159 160 161 162 163
void kvmppc_book3s_queue_irqprio(struct kvm_vcpu *vcpu, unsigned int vec)
{
	vcpu->stat.queue_intr++;

	set_bit(kvmppc_book3s_vec2irqprio(vec),
		&vcpu->arch.pending_exceptions);
A
Alexander Graf 已提交
164 165 166 167
#ifdef EXIT_DEBUG
	printk(KERN_INFO "Queueing interrupt %x\n", vec);
#endif
}
168
EXPORT_SYMBOL_GPL(kvmppc_book3s_queue_irqprio);
A
Alexander Graf 已提交
169

170 171 172 173 174 175 176
void kvmppc_core_queue_machine_check(struct kvm_vcpu *vcpu, ulong flags)
{
	/* might as well deliver this straight away */
	kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_MACHINE_CHECK, flags);
}
EXPORT_SYMBOL_GPL(kvmppc_core_queue_machine_check);

177
void kvmppc_core_queue_program(struct kvm_vcpu *vcpu, ulong flags)
A
Alexander Graf 已提交
178
{
179 180
	/* might as well deliver this straight away */
	kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_PROGRAM, flags);
A
Alexander Graf 已提交
181
}
182
EXPORT_SYMBOL_GPL(kvmppc_core_queue_program);
A
Alexander Graf 已提交
183

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
void kvmppc_core_queue_fpunavail(struct kvm_vcpu *vcpu)
{
	/* might as well deliver this straight away */
	kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_FP_UNAVAIL, 0);
}

void kvmppc_core_queue_vec_unavail(struct kvm_vcpu *vcpu)
{
	/* might as well deliver this straight away */
	kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_ALTIVEC, 0);
}

void kvmppc_core_queue_vsx_unavail(struct kvm_vcpu *vcpu)
{
	/* might as well deliver this straight away */
	kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_VSX, 0);
}

A
Alexander Graf 已提交
202 203 204 205
void kvmppc_core_queue_dec(struct kvm_vcpu *vcpu)
{
	kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_DECREMENTER);
}
206
EXPORT_SYMBOL_GPL(kvmppc_core_queue_dec);
A
Alexander Graf 已提交
207 208 209

int kvmppc_core_pending_dec(struct kvm_vcpu *vcpu)
{
210
	return test_bit(BOOK3S_IRQPRIO_DECREMENTER, &vcpu->arch.pending_exceptions);
A
Alexander Graf 已提交
211
}
212
EXPORT_SYMBOL_GPL(kvmppc_core_pending_dec);
A
Alexander Graf 已提交
213

214 215 216 217
void kvmppc_core_dequeue_dec(struct kvm_vcpu *vcpu)
{
	kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_DECREMENTER);
}
218
EXPORT_SYMBOL_GPL(kvmppc_core_dequeue_dec);
219

A
Alexander Graf 已提交
220 221 222
void kvmppc_core_queue_external(struct kvm_vcpu *vcpu,
                                struct kvm_interrupt *irq)
{
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
	/*
	 * This case (KVM_INTERRUPT_SET) should never actually arise for
	 * a pseries guest (because pseries guests expect their interrupt
	 * controllers to continue asserting an external interrupt request
	 * until it is acknowledged at the interrupt controller), but is
	 * included to avoid ABI breakage and potentially for other
	 * sorts of guest.
	 *
	 * There is a subtlety here: HV KVM does not test the
	 * external_oneshot flag in the code that synthesizes
	 * external interrupts for the guest just before entering
	 * the guest.  That is OK even if userspace did do a
	 * KVM_INTERRUPT_SET on a pseries guest vcpu, because the
	 * caller (kvm_vcpu_ioctl_interrupt) does a kvm_vcpu_kick()
	 * which ends up doing a smp_send_reschedule(), which will
	 * pull the guest all the way out to the host, meaning that
	 * we will call kvmppc_core_prepare_to_enter() before entering
	 * the guest again, and that will handle the external_oneshot
	 * flag correctly.
	 */
	if (irq->irq == KVM_INTERRUPT_SET)
		vcpu->arch.external_oneshot = 1;

	kvmppc_book3s_queue_irqprio(vcpu, BOOK3S_INTERRUPT_EXTERNAL);
A
Alexander Graf 已提交
247 248
}

249
void kvmppc_core_dequeue_external(struct kvm_vcpu *vcpu)
250 251 252 253
{
	kvmppc_book3s_dequeue_irqprio(vcpu, BOOK3S_INTERRUPT_EXTERNAL);
}

254 255 256 257 258
void kvmppc_core_queue_data_storage(struct kvm_vcpu *vcpu, ulong dar,
				    ulong flags)
{
	kvmppc_set_dar(vcpu, dar);
	kvmppc_set_dsisr(vcpu, flags);
259
	kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_DATA_STORAGE, 0);
260
}
261
EXPORT_SYMBOL_GPL(kvmppc_core_queue_data_storage);
262 263 264

void kvmppc_core_queue_inst_storage(struct kvm_vcpu *vcpu, ulong flags)
{
265
	kvmppc_inject_interrupt(vcpu, BOOK3S_INTERRUPT_INST_STORAGE, flags);
266
}
267
EXPORT_SYMBOL_GPL(kvmppc_core_queue_inst_storage);
268

T
Thomas Huth 已提交
269 270
static int kvmppc_book3s_irqprio_deliver(struct kvm_vcpu *vcpu,
					 unsigned int priority)
A
Alexander Graf 已提交
271 272 273
{
	int deliver = 1;
	int vec = 0;
274
	bool crit = kvmppc_critical_section(vcpu);
A
Alexander Graf 已提交
275 276 277

	switch (priority) {
	case BOOK3S_IRQPRIO_DECREMENTER:
278
		deliver = (kvmppc_get_msr(vcpu) & MSR_EE) && !crit;
A
Alexander Graf 已提交
279 280 281
		vec = BOOK3S_INTERRUPT_DECREMENTER;
		break;
	case BOOK3S_IRQPRIO_EXTERNAL:
282
		deliver = (kvmppc_get_msr(vcpu) & MSR_EE) && !crit;
A
Alexander Graf 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
		vec = BOOK3S_INTERRUPT_EXTERNAL;
		break;
	case BOOK3S_IRQPRIO_SYSTEM_RESET:
		vec = BOOK3S_INTERRUPT_SYSTEM_RESET;
		break;
	case BOOK3S_IRQPRIO_MACHINE_CHECK:
		vec = BOOK3S_INTERRUPT_MACHINE_CHECK;
		break;
	case BOOK3S_IRQPRIO_DATA_STORAGE:
		vec = BOOK3S_INTERRUPT_DATA_STORAGE;
		break;
	case BOOK3S_IRQPRIO_INST_STORAGE:
		vec = BOOK3S_INTERRUPT_INST_STORAGE;
		break;
	case BOOK3S_IRQPRIO_DATA_SEGMENT:
		vec = BOOK3S_INTERRUPT_DATA_SEGMENT;
		break;
	case BOOK3S_IRQPRIO_INST_SEGMENT:
		vec = BOOK3S_INTERRUPT_INST_SEGMENT;
		break;
	case BOOK3S_IRQPRIO_ALIGNMENT:
		vec = BOOK3S_INTERRUPT_ALIGNMENT;
		break;
	case BOOK3S_IRQPRIO_PROGRAM:
		vec = BOOK3S_INTERRUPT_PROGRAM;
		break;
	case BOOK3S_IRQPRIO_VSX:
		vec = BOOK3S_INTERRUPT_VSX;
		break;
	case BOOK3S_IRQPRIO_ALTIVEC:
		vec = BOOK3S_INTERRUPT_ALTIVEC;
		break;
	case BOOK3S_IRQPRIO_FP_UNAVAIL:
		vec = BOOK3S_INTERRUPT_FP_UNAVAIL;
		break;
	case BOOK3S_IRQPRIO_SYSCALL:
		vec = BOOK3S_INTERRUPT_SYSCALL;
		break;
	case BOOK3S_IRQPRIO_DEBUG:
		vec = BOOK3S_INTERRUPT_TRACE;
		break;
	case BOOK3S_IRQPRIO_PERFORMANCE_MONITOR:
		vec = BOOK3S_INTERRUPT_PERFMON;
		break;
327 328 329
	case BOOK3S_IRQPRIO_FAC_UNAVAIL:
		vec = BOOK3S_INTERRUPT_FAC_UNAVAIL;
		break;
A
Alexander Graf 已提交
330 331 332 333 334 335 336 337 338 339 340
	default:
		deliver = 0;
		printk(KERN_ERR "KVM: Unknown interrupt: 0x%x\n", priority);
		break;
	}

#if 0
	printk(KERN_INFO "Deliver interrupt 0x%x? %x\n", vec, deliver);
#endif

	if (deliver)
341
		kvmppc_inject_interrupt(vcpu, vec, 0);
A
Alexander Graf 已提交
342 343 344 345

	return deliver;
}

346 347 348 349 350 351 352 353 354
/*
 * This function determines if an irqprio should be cleared once issued.
 */
static bool clear_irqprio(struct kvm_vcpu *vcpu, unsigned int priority)
{
	switch (priority) {
		case BOOK3S_IRQPRIO_DECREMENTER:
			/* DEC interrupts get cleared by mtdec */
			return false;
355 356 357 358 359 360 361 362 363 364
		case BOOK3S_IRQPRIO_EXTERNAL:
			/*
			 * External interrupts get cleared by userspace
			 * except when set by the KVM_INTERRUPT ioctl with
			 * KVM_INTERRUPT_SET (not KVM_INTERRUPT_SET_LEVEL).
			 */
			if (vcpu->arch.external_oneshot) {
				vcpu->arch.external_oneshot = 0;
				return true;
			}
365 366 367 368 369 370
			return false;
	}

	return true;
}

371
int kvmppc_core_prepare_to_enter(struct kvm_vcpu *vcpu)
A
Alexander Graf 已提交
372 373
{
	unsigned long *pending = &vcpu->arch.pending_exceptions;
374
	unsigned long old_pending = vcpu->arch.pending_exceptions;
A
Alexander Graf 已提交
375 376 377 378 379 380 381
	unsigned int priority;

#ifdef EXIT_DEBUG
	if (vcpu->arch.pending_exceptions)
		printk(KERN_EMERG "KVM: Check pending: %lx\n", vcpu->arch.pending_exceptions);
#endif
	priority = __ffs(*pending);
A
Alexander Graf 已提交
382
	while (priority < BOOK3S_IRQPRIO_MAX) {
383
		if (kvmppc_book3s_irqprio_deliver(vcpu, priority) &&
384
		    clear_irqprio(vcpu, priority)) {
A
Alexander Graf 已提交
385 386 387 388 389 390 391 392
			clear_bit(priority, &vcpu->arch.pending_exceptions);
			break;
		}

		priority = find_next_bit(pending,
					 BITS_PER_BYTE * sizeof(*pending),
					 priority + 1);
	}
393 394

	/* Tell the guest about our interrupt status */
395
	kvmppc_update_int_pending(vcpu, *pending, old_pending);
396 397

	return 0;
A
Alexander Graf 已提交
398
}
399
EXPORT_SYMBOL_GPL(kvmppc_core_prepare_to_enter);
A
Alexander Graf 已提交
400

D
Dan Williams 已提交
401
kvm_pfn_t kvmppc_gpa_to_pfn(struct kvm_vcpu *vcpu, gpa_t gpa, bool writing,
402
			bool *writable)
403
{
404 405
	ulong mp_pa = vcpu->arch.magic_page_pa & KVM_PAM;
	gfn_t gfn = gpa >> PAGE_SHIFT;
406

407
	if (!(kvmppc_get_msr(vcpu) & MSR_SF))
408 409
		mp_pa = (uint32_t)mp_pa;

410
	/* Magic page override */
411 412
	gpa &= ~0xFFFULL;
	if (unlikely(mp_pa) && unlikely((gpa & KVM_PAM) == mp_pa)) {
413
		ulong shared_page = ((ulong)vcpu->arch.shared) & PAGE_MASK;
D
Dan Williams 已提交
414
		kvm_pfn_t pfn;
415

D
Dan Williams 已提交
416
		pfn = (kvm_pfn_t)virt_to_phys((void*)shared_page) >> PAGE_SHIFT;
417
		get_page(pfn_to_page(pfn));
418 419
		if (writable)
			*writable = true;
420 421 422
		return pfn;
	}

423
	return gfn_to_pfn_prot(vcpu->kvm, gfn, writing, writable);
424
}
425
EXPORT_SYMBOL_GPL(kvmppc_gpa_to_pfn);
426

427 428
int kvmppc_xlate(struct kvm_vcpu *vcpu, ulong eaddr, enum xlate_instdata xlid,
		 enum xlate_readwrite xlrw, struct kvmppc_pte *pte)
A
Alexander Graf 已提交
429
{
430 431
	bool data = (xlid == XLATE_DATA);
	bool iswrite = (xlrw == XLATE_WRITE);
432
	int relocated = (kvmppc_get_msr(vcpu) & (data ? MSR_DR : MSR_IR));
A
Alexander Graf 已提交
433 434 435
	int r;

	if (relocated) {
436
		r = vcpu->arch.mmu.xlate(vcpu, eaddr, pte, data, iswrite);
A
Alexander Graf 已提交
437 438
	} else {
		pte->eaddr = eaddr;
A
Alexander Graf 已提交
439
		pte->raddr = eaddr & KVM_PAM;
440
		pte->vpage = VSID_REAL | eaddr >> 12;
A
Alexander Graf 已提交
441 442 443 444
		pte->may_read = true;
		pte->may_write = true;
		pte->may_execute = true;
		r = 0;
445 446 447 448 449 450 451

		if ((kvmppc_get_msr(vcpu) & (MSR_IR | MSR_DR)) == MSR_DR &&
		    !data) {
			if ((vcpu->arch.hflags & BOOK3S_HFLAG_SPLIT_HACK) &&
			    ((eaddr & SPLIT_HACK_MASK) == SPLIT_HACK_OFFS))
			pte->raddr &= ~SPLIT_HACK_MASK;
		}
A
Alexander Graf 已提交
452 453 454 455 456
	}

	return r;
}

457 458
int kvmppc_load_last_inst(struct kvm_vcpu *vcpu,
		enum instruction_fetch_type type, u32 *inst)
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
{
	ulong pc = kvmppc_get_pc(vcpu);
	int r;

	if (type == INST_SC)
		pc -= 4;

	r = kvmppc_ld(vcpu, &pc, sizeof(u32), inst, false);
	if (r == EMULATE_DONE)
		return r;
	else
		return EMULATE_AGAIN;
}
EXPORT_SYMBOL_GPL(kvmppc_load_last_inst);

A
Alexander Graf 已提交
474 475 476 477 478
int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
{
	return 0;
}

479 480 481 482 483 484 485 486 487
int kvmppc_subarch_vcpu_init(struct kvm_vcpu *vcpu)
{
	return 0;
}

void kvmppc_subarch_vcpu_uninit(struct kvm_vcpu *vcpu)
{
}

488 489 490
int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
				  struct kvm_sregs *sregs)
{
491 492 493 494 495 496 497
	int ret;

	vcpu_load(vcpu);
	ret = vcpu->kvm->arch.kvm_ops->get_sregs(vcpu, sregs);
	vcpu_put(vcpu);

	return ret;
498 499 500 501 502
}

int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
				  struct kvm_sregs *sregs)
{
503 504 505 506 507 508 509
	int ret;

	vcpu_load(vcpu);
	ret = vcpu->kvm->arch.kvm_ops->set_sregs(vcpu, sregs);
	vcpu_put(vcpu);

	return ret;
510 511
}

A
Alexander Graf 已提交
512 513 514 515
int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
{
	int i;

516
	regs->pc = kvmppc_get_pc(vcpu);
517
	regs->cr = kvmppc_get_cr(vcpu);
518 519
	regs->ctr = kvmppc_get_ctr(vcpu);
	regs->lr = kvmppc_get_lr(vcpu);
520
	regs->xer = kvmppc_get_xer(vcpu);
521 522 523
	regs->msr = kvmppc_get_msr(vcpu);
	regs->srr0 = kvmppc_get_srr0(vcpu);
	regs->srr1 = kvmppc_get_srr1(vcpu);
A
Alexander Graf 已提交
524
	regs->pid = vcpu->arch.pid;
525 526 527 528 529 530 531 532
	regs->sprg0 = kvmppc_get_sprg0(vcpu);
	regs->sprg1 = kvmppc_get_sprg1(vcpu);
	regs->sprg2 = kvmppc_get_sprg2(vcpu);
	regs->sprg3 = kvmppc_get_sprg3(vcpu);
	regs->sprg4 = kvmppc_get_sprg4(vcpu);
	regs->sprg5 = kvmppc_get_sprg5(vcpu);
	regs->sprg6 = kvmppc_get_sprg6(vcpu);
	regs->sprg7 = kvmppc_get_sprg7(vcpu);
A
Alexander Graf 已提交
533 534

	for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
535
		regs->gpr[i] = kvmppc_get_gpr(vcpu, i);
A
Alexander Graf 已提交
536 537 538 539 540 541 542 543

	return 0;
}

int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
{
	int i;

544
	kvmppc_set_pc(vcpu, regs->pc);
545
	kvmppc_set_cr(vcpu, regs->cr);
546 547
	kvmppc_set_ctr(vcpu, regs->ctr);
	kvmppc_set_lr(vcpu, regs->lr);
548
	kvmppc_set_xer(vcpu, regs->xer);
A
Alexander Graf 已提交
549
	kvmppc_set_msr(vcpu, regs->msr);
550 551 552 553 554 555 556 557 558 559
	kvmppc_set_srr0(vcpu, regs->srr0);
	kvmppc_set_srr1(vcpu, regs->srr1);
	kvmppc_set_sprg0(vcpu, regs->sprg0);
	kvmppc_set_sprg1(vcpu, regs->sprg1);
	kvmppc_set_sprg2(vcpu, regs->sprg2);
	kvmppc_set_sprg3(vcpu, regs->sprg3);
	kvmppc_set_sprg4(vcpu, regs->sprg4);
	kvmppc_set_sprg5(vcpu, regs->sprg5);
	kvmppc_set_sprg6(vcpu, regs->sprg6);
	kvmppc_set_sprg7(vcpu, regs->sprg7);
A
Alexander Graf 已提交
560

561 562
	for (i = 0; i < ARRAY_SIZE(regs->gpr); i++)
		kvmppc_set_gpr(vcpu, i, regs->gpr[i]);
A
Alexander Graf 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576

	return 0;
}

int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
{
	return -ENOTSUPP;
}

int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
{
	return -ENOTSUPP;
}

577 578
int kvmppc_get_one_reg(struct kvm_vcpu *vcpu, u64 id,
			union kvmppc_one_reg *val)
579
{
580
	int r = 0;
581
	long int i;
582

583
	r = vcpu->kvm->arch.kvm_ops->get_one_reg(vcpu, id, val);
584 585
	if (r == -EINVAL) {
		r = 0;
586
		switch (id) {
587
		case KVM_REG_PPC_DAR:
588
			*val = get_reg_val(id, kvmppc_get_dar(vcpu));
589 590
			break;
		case KVM_REG_PPC_DSISR:
591
			*val = get_reg_val(id, kvmppc_get_dsisr(vcpu));
592
			break;
593
		case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
594 595
			i = id - KVM_REG_PPC_FPR0;
			*val = get_reg_val(id, VCPU_FPR(vcpu, i));
596 597
			break;
		case KVM_REG_PPC_FPSCR:
598
			*val = get_reg_val(id, vcpu->arch.fp.fpscr);
599
			break;
600 601 602
#ifdef CONFIG_VSX
		case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
			if (cpu_has_feature(CPU_FTR_VSX)) {
603 604 605
				i = id - KVM_REG_PPC_VSR0;
				val->vsxval[0] = vcpu->arch.fp.fpr[i][0];
				val->vsxval[1] = vcpu->arch.fp.fpr[i][1];
606 607 608 609 610
			} else {
				r = -ENXIO;
			}
			break;
#endif /* CONFIG_VSX */
611 612
		case KVM_REG_PPC_DEBUG_INST:
			*val = get_reg_val(id, INS_TW);
613
			break;
614 615
#ifdef CONFIG_KVM_XICS
		case KVM_REG_PPC_ICP_STATE:
616
			if (!vcpu->arch.icp && !vcpu->arch.xive_vcpu) {
617 618 619
				r = -ENXIO;
				break;
			}
620
			if (xics_on_xive())
621 622 623
				*val = get_reg_val(id, kvmppc_xive_get_icp(vcpu));
			else
				*val = get_reg_val(id, kvmppc_xics_get_icp(vcpu));
624 625
			break;
#endif /* CONFIG_KVM_XICS */
626 627 628 629 630 631 632 633 634 635 636 637
#ifdef CONFIG_KVM_XIVE
		case KVM_REG_PPC_VP_STATE:
			if (!vcpu->arch.xive_vcpu) {
				r = -ENXIO;
				break;
			}
			if (xive_enabled())
				r = kvmppc_xive_native_get_vp(vcpu, val);
			else
				r = -ENXIO;
			break;
#endif /* CONFIG_KVM_XIVE */
638
		case KVM_REG_PPC_FSCR:
639
			*val = get_reg_val(id, vcpu->arch.fscr);
640
			break;
641
		case KVM_REG_PPC_TAR:
642
			*val = get_reg_val(id, vcpu->arch.tar);
643
			break;
644
		case KVM_REG_PPC_EBBHR:
645
			*val = get_reg_val(id, vcpu->arch.ebbhr);
646 647
			break;
		case KVM_REG_PPC_EBBRR:
648
			*val = get_reg_val(id, vcpu->arch.ebbrr);
649 650
			break;
		case KVM_REG_PPC_BESCR:
651
			*val = get_reg_val(id, vcpu->arch.bescr);
652
			break;
653
		case KVM_REG_PPC_IC:
654
			*val = get_reg_val(id, vcpu->arch.ic);
655
			break;
656 657 658 659 660 661 662 663 664
		default:
			r = -EINVAL;
			break;
		}
	}

	return r;
}

665 666
int kvmppc_set_one_reg(struct kvm_vcpu *vcpu, u64 id,
			union kvmppc_one_reg *val)
667
{
668
	int r = 0;
669
	long int i;
670

671
	r = vcpu->kvm->arch.kvm_ops->set_one_reg(vcpu, id, val);
672 673
	if (r == -EINVAL) {
		r = 0;
674
		switch (id) {
675
		case KVM_REG_PPC_DAR:
676
			kvmppc_set_dar(vcpu, set_reg_val(id, *val));
677 678
			break;
		case KVM_REG_PPC_DSISR:
679
			kvmppc_set_dsisr(vcpu, set_reg_val(id, *val));
680
			break;
681
		case KVM_REG_PPC_FPR0 ... KVM_REG_PPC_FPR31:
682 683
			i = id - KVM_REG_PPC_FPR0;
			VCPU_FPR(vcpu, i) = set_reg_val(id, *val);
684 685
			break;
		case KVM_REG_PPC_FPSCR:
686
			vcpu->arch.fp.fpscr = set_reg_val(id, *val);
687
			break;
688 689 690
#ifdef CONFIG_VSX
		case KVM_REG_PPC_VSR0 ... KVM_REG_PPC_VSR31:
			if (cpu_has_feature(CPU_FTR_VSX)) {
691 692 693
				i = id - KVM_REG_PPC_VSR0;
				vcpu->arch.fp.fpr[i][0] = val->vsxval[0];
				vcpu->arch.fp.fpr[i][1] = val->vsxval[1];
694 695 696 697 698
			} else {
				r = -ENXIO;
			}
			break;
#endif /* CONFIG_VSX */
699 700
#ifdef CONFIG_KVM_XICS
		case KVM_REG_PPC_ICP_STATE:
701
			if (!vcpu->arch.icp && !vcpu->arch.xive_vcpu) {
702 703 704
				r = -ENXIO;
				break;
			}
705
			if (xics_on_xive())
706 707 708
				r = kvmppc_xive_set_icp(vcpu, set_reg_val(id, *val));
			else
				r = kvmppc_xics_set_icp(vcpu, set_reg_val(id, *val));
709 710
			break;
#endif /* CONFIG_KVM_XICS */
711 712 713 714 715 716 717 718 719 720 721 722
#ifdef CONFIG_KVM_XIVE
		case KVM_REG_PPC_VP_STATE:
			if (!vcpu->arch.xive_vcpu) {
				r = -ENXIO;
				break;
			}
			if (xive_enabled())
				r = kvmppc_xive_native_set_vp(vcpu, val);
			else
				r = -ENXIO;
			break;
#endif /* CONFIG_KVM_XIVE */
723
		case KVM_REG_PPC_FSCR:
724
			vcpu->arch.fscr = set_reg_val(id, *val);
725
			break;
726
		case KVM_REG_PPC_TAR:
727
			vcpu->arch.tar = set_reg_val(id, *val);
728
			break;
729
		case KVM_REG_PPC_EBBHR:
730
			vcpu->arch.ebbhr = set_reg_val(id, *val);
731 732
			break;
		case KVM_REG_PPC_EBBRR:
733
			vcpu->arch.ebbrr = set_reg_val(id, *val);
734 735
			break;
		case KVM_REG_PPC_BESCR:
736
			vcpu->arch.bescr = set_reg_val(id, *val);
737
			break;
738
		case KVM_REG_PPC_IC:
739
			vcpu->arch.ic = set_reg_val(id, *val);
740
			break;
741 742 743 744 745 746 747 748 749
		default:
			r = -EINVAL;
			break;
		}
	}

	return r;
}

750 751
void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
{
752
	vcpu->kvm->arch.kvm_ops->vcpu_load(vcpu, cpu);
753 754 755 756
}

void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
{
757
	vcpu->kvm->arch.kvm_ops->vcpu_put(vcpu);
758 759 760 761
}

void kvmppc_set_msr(struct kvm_vcpu *vcpu, u64 msr)
{
762
	vcpu->kvm->arch.kvm_ops->set_msr(vcpu, msr);
763
}
764
EXPORT_SYMBOL_GPL(kvmppc_set_msr);
765 766 767

int kvmppc_vcpu_run(struct kvm_run *kvm_run, struct kvm_vcpu *vcpu)
{
768
	return vcpu->kvm->arch.kvm_ops->vcpu_run(kvm_run, vcpu);
769 770
}

A
Alexander Graf 已提交
771 772 773 774 775 776
int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
                                  struct kvm_translation *tr)
{
	return 0;
}

777 778 779
int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
					struct kvm_guest_debug *dbg)
{
780
	vcpu_load(vcpu);
781
	vcpu->guest_debug = dbg->control;
782
	vcpu_put(vcpu);
783
	return 0;
784 785
}

786
void kvmppc_decrementer_func(struct kvm_vcpu *vcpu)
787 788 789 790
{
	kvmppc_core_queue_dec(vcpu);
	kvm_vcpu_kick(vcpu);
}
791

792 793
int kvmppc_core_vcpu_create(struct kvm *kvm, struct kvm_vcpu *vcpu,
			    unsigned int id)
794
{
795
	return kvm->arch.kvm_ops->vcpu_create(kvm, vcpu, id);
796 797 798 799
}

void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
{
800
	vcpu->kvm->arch.kvm_ops->vcpu_free(vcpu);
801 802 803 804
}

int kvmppc_core_check_requests(struct kvm_vcpu *vcpu)
{
805
	return vcpu->kvm->arch.kvm_ops->check_requests(vcpu);
806 807 808 809
}

int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
{
810
	return kvm->arch.kvm_ops->get_dirty_log(kvm, log);
811 812
}

813
void kvmppc_core_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
814 815
			      struct kvm_memory_slot *dont)
{
816
	kvm->arch.kvm_ops->free_memslot(free, dont);
817 818
}

819
int kvmppc_core_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
820 821
			       unsigned long npages)
{
822
	return kvm->arch.kvm_ops->create_memslot(slot, npages);
823 824 825 826
}

void kvmppc_core_flush_memslot(struct kvm *kvm, struct kvm_memory_slot *memslot)
{
827
	kvm->arch.kvm_ops->flush_memslot(kvm, memslot);
828 829 830 831
}

int kvmppc_core_prepare_memory_region(struct kvm *kvm,
				struct kvm_memory_slot *memslot,
832
				const struct kvm_userspace_memory_region *mem)
833
{
834
	return kvm->arch.kvm_ops->prepare_memory_region(kvm, memslot, mem);
835 836 837
}

void kvmppc_core_commit_memory_region(struct kvm *kvm,
838
				const struct kvm_userspace_memory_region *mem,
839
				const struct kvm_memory_slot *old,
840 841
				const struct kvm_memory_slot *new,
				enum kvm_mr_change change)
842
{
843
	kvm->arch.kvm_ops->commit_memory_region(kvm, mem, old, new, change);
844 845 846 847
}

int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
{
848
	return kvm->arch.kvm_ops->unmap_hva_range(kvm, start, end);
849 850
}

A
Andres Lagar-Cavilla 已提交
851
int kvm_age_hva(struct kvm *kvm, unsigned long start, unsigned long end)
852
{
A
Andres Lagar-Cavilla 已提交
853
	return kvm->arch.kvm_ops->age_hva(kvm, start, end);
854 855 856 857
}

int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
{
858
	return kvm->arch.kvm_ops->test_age_hva(kvm, hva);
859 860
}

861
int kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
862
{
863
	kvm->arch.kvm_ops->set_spte_hva(kvm, hva, pte);
864
	return 0;
865 866 867 868
}

void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu)
{
869
	vcpu->kvm->arch.kvm_ops->mmu_destroy(vcpu);
870 871 872 873 874 875
}

int kvmppc_core_init_vm(struct kvm *kvm)
{

#ifdef CONFIG_PPC64
876
	INIT_LIST_HEAD_RCU(&kvm->arch.spapr_tce_tables);
877
	INIT_LIST_HEAD(&kvm->arch.rtas_tokens);
878
	mutex_init(&kvm->arch.rtas_token_lock);
879 880
#endif

881
	return kvm->arch.kvm_ops->init_vm(kvm);
882 883 884 885
}

void kvmppc_core_destroy_vm(struct kvm *kvm)
{
886
	kvm->arch.kvm_ops->destroy_vm(kvm);
887 888 889 890 891

#ifdef CONFIG_PPC64
	kvmppc_rtas_tokens_free(kvm);
	WARN_ON(!list_empty(&kvm->arch.spapr_tce_tables));
#endif
892 893 894 895 896 897 898 899 900 901 902

#ifdef CONFIG_KVM_XICS
	/*
	 * Free the XIVE devices which are not directly freed by the
	 * device 'release' method
	 */
	kfree(kvm->arch.xive_devices.native);
	kvm->arch.xive_devices.native = NULL;
	kfree(kvm->arch.xive_devices.xics_on_xive);
	kvm->arch.xive_devices.xics_on_xive = NULL;
#endif /* CONFIG_KVM_XICS */
903 904
}

905 906 907 908 909
int kvmppc_h_logical_ci_load(struct kvm_vcpu *vcpu)
{
	unsigned long size = kvmppc_get_gpr(vcpu, 4);
	unsigned long addr = kvmppc_get_gpr(vcpu, 5);
	u64 buf;
910
	int srcu_idx;
911 912 913 914 915
	int ret;

	if (!is_power_of_2(size) || (size > sizeof(buf)))
		return H_TOO_HARD;

916
	srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
917
	ret = kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, size, &buf);
918
	srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
	if (ret != 0)
		return H_TOO_HARD;

	switch (size) {
	case 1:
		kvmppc_set_gpr(vcpu, 4, *(u8 *)&buf);
		break;

	case 2:
		kvmppc_set_gpr(vcpu, 4, be16_to_cpu(*(__be16 *)&buf));
		break;

	case 4:
		kvmppc_set_gpr(vcpu, 4, be32_to_cpu(*(__be32 *)&buf));
		break;

	case 8:
		kvmppc_set_gpr(vcpu, 4, be64_to_cpu(*(__be64 *)&buf));
		break;

	default:
		BUG();
	}

	return H_SUCCESS;
}
EXPORT_SYMBOL_GPL(kvmppc_h_logical_ci_load);

int kvmppc_h_logical_ci_store(struct kvm_vcpu *vcpu)
{
	unsigned long size = kvmppc_get_gpr(vcpu, 4);
	unsigned long addr = kvmppc_get_gpr(vcpu, 5);
	unsigned long val = kvmppc_get_gpr(vcpu, 6);
	u64 buf;
953
	int srcu_idx;
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
	int ret;

	switch (size) {
	case 1:
		*(u8 *)&buf = val;
		break;

	case 2:
		*(__be16 *)&buf = cpu_to_be16(val);
		break;

	case 4:
		*(__be32 *)&buf = cpu_to_be32(val);
		break;

	case 8:
		*(__be64 *)&buf = cpu_to_be64(val);
		break;

	default:
		return H_TOO_HARD;
	}

977
	srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
978
	ret = kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, size, &buf);
979
	srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
980 981 982 983 984 985 986
	if (ret != 0)
		return H_TOO_HARD;

	return H_SUCCESS;
}
EXPORT_SYMBOL_GPL(kvmppc_h_logical_ci_store);

987 988
int kvmppc_core_check_processor_compat(void)
{
989 990
	/*
	 * We always return 0 for book3s. We check
991
	 * for compatibility while loading the HV
992 993 994 995 996
	 * or PR module
	 */
	return 0;
}

997 998 999 1000 1001
int kvmppc_book3s_hcall_implemented(struct kvm *kvm, unsigned long hcall)
{
	return kvm->arch.kvm_ops->hcall_implemented(hcall);
}

1002 1003 1004 1005
#ifdef CONFIG_KVM_XICS
int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
		bool line_status)
{
1006
	if (xics_on_xive())
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
		return kvmppc_xive_set_irq(kvm, irq_source_id, irq, level,
					   line_status);
	else
		return kvmppc_xics_set_irq(kvm, irq_source_id, irq, level,
					   line_status);
}

int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *irq_entry,
			      struct kvm *kvm, int irq_source_id,
			      int level, bool line_status)
{
	return kvm_set_irq(kvm, irq_source_id, irq_entry->gsi,
			   level, line_status);
}
static int kvmppc_book3s_set_irq(struct kvm_kernel_irq_routing_entry *e,
				 struct kvm *kvm, int irq_source_id, int level,
				 bool line_status)
{
	return kvm_set_irq(kvm, irq_source_id, e->gsi, level, line_status);
}

int kvm_irq_map_gsi(struct kvm *kvm,
		    struct kvm_kernel_irq_routing_entry *entries, int gsi)
{
	entries->gsi = gsi;
	entries->type = KVM_IRQ_ROUTING_IRQCHIP;
	entries->set = kvmppc_book3s_set_irq;
	entries->irqchip.irqchip = 0;
	entries->irqchip.pin = gsi;
	return 1;
}

int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin)
{
	return pin;
}

#endif /* CONFIG_KVM_XICS */

1046 1047 1048 1049 1050 1051 1052
static int kvmppc_book3s_init(void)
{
	int r;

	r = kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
	if (r)
		return r;
1053
#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
1054 1055 1056
	r = kvmppc_book3s_init_pr();
#endif

1057 1058
#ifdef CONFIG_KVM_XICS
#ifdef CONFIG_KVM_XIVE
1059
	if (xics_on_xive()) {
1060 1061
		kvmppc_xive_init_module();
		kvm_register_device_ops(&kvm_xive_ops, KVM_DEV_TYPE_XICS);
1062 1063 1064 1065 1066
		if (kvmppc_xive_native_supported()) {
			kvmppc_xive_native_init_module();
			kvm_register_device_ops(&kvm_xive_native_ops,
						KVM_DEV_TYPE_XIVE);
		}
1067 1068 1069 1070 1071
	} else
#endif
		kvm_register_device_ops(&kvm_xics_ops, KVM_DEV_TYPE_XICS);
#endif
	return r;
1072 1073 1074 1075
}

static void kvmppc_book3s_exit(void)
{
1076
#ifdef CONFIG_KVM_XICS
1077
	if (xics_on_xive()) {
1078
		kvmppc_xive_exit_module();
1079 1080
		kvmppc_xive_native_exit_module();
	}
1081
#endif
1082
#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
1083 1084 1085
	kvmppc_book3s_exit_pr();
#endif
	kvm_exit();
1086
}
1087 1088 1089

module_init(kvmppc_book3s_init);
module_exit(kvmppc_book3s_exit);
1090 1091

/* On 32bit this is our one and only kernel module */
1092
#ifdef CONFIG_KVM_BOOK3S_32_HANDLER
1093 1094 1095
MODULE_ALIAS_MISCDEV(KVM_MINOR);
MODULE_ALIAS("devname:kvm");
#endif