xref: /linux/arch/powerpc/kvm/book3s_hv_interrupts.S (revision 6e2d6b2728fcb408eabd7991804f8cb33ff59f20)
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 2011 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
16 *
17 * Derived from book3s_interrupts.S, which is:
18 * Copyright SUSE Linux Products GmbH 2009
19 *
20 * Authors: Alexander Graf <agraf@suse.de>
21 */
22
23#include <asm/ppc_asm.h>
24#include <asm/kvm_asm.h>
25#include <asm/reg.h>
26#include <asm/page.h>
27#include <asm/asm-offsets.h>
28#include <asm/exception-64s.h>
29#include <asm/ppc-opcode.h>
30#include <asm/asm-compat.h>
31#include <asm/feature-fixups.h>
32
33/*****************************************************************************
34 *                                                                           *
35 *     Guest entry / exit code that is in kernel module memory (vmalloc)     *
36 *                                                                           *
37 ****************************************************************************/
38
39/* Registers:
40 *  none
41 */
42_GLOBAL(__kvmppc_vcore_entry)
43
44	/* Write correct stack frame */
45	mflr	r0
46	std	r0,PPC_LR_STKOFF(r1)
47
48	/* Save host state to the stack */
49	stdu	r1, -SWITCH_FRAME_SIZE(r1)
50
51	/* Save non-volatile registers (r14 - r31) and CR */
52	SAVE_NVGPRS(r1)
53	mfcr	r3
54	std	r3, _CCR(r1)
55
56	/* Save host DSCR */
57	mfspr	r3, SPRN_DSCR
58	std	r3, HSTATE_DSCR(r13)
59
60BEGIN_FTR_SECTION
61	/* Save host DABR */
62	mfspr	r3, SPRN_DABR
63	std	r3, HSTATE_DABR(r13)
64END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
65
66	/* Save host PMU registers */
67BEGIN_FTR_SECTION
68	/* Work around P8 PMAE bug */
69	li	r3, -1
70	clrrdi	r3, r3, 10
71	mfspr	r8, SPRN_MMCR2
72	mtspr	SPRN_MMCR2, r3		/* freeze all counters using MMCR2 */
73	isync
74END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
75	li	r3, 1
76	sldi	r3, r3, 31		/* MMCR0_FC (freeze counters) bit */
77	mfspr	r7, SPRN_MMCR0		/* save MMCR0 */
78	mtspr	SPRN_MMCR0, r3		/* freeze all counters, disable interrupts */
79	mfspr	r6, SPRN_MMCRA
80	/* Clear MMCRA in order to disable SDAR updates */
81	li	r5, 0
82	mtspr	SPRN_MMCRA, r5
83	isync
84	lbz	r5, PACA_PMCINUSE(r13)	/* is the host using the PMU? */
85	cmpwi	r5, 0
86	beq	31f			/* skip if not */
87	mfspr	r5, SPRN_MMCR1
88	mfspr	r9, SPRN_SIAR
89	mfspr	r10, SPRN_SDAR
90	std	r7, HSTATE_MMCR0(r13)
91	std	r5, HSTATE_MMCR1(r13)
92	std	r6, HSTATE_MMCRA(r13)
93	std	r9, HSTATE_SIAR(r13)
94	std	r10, HSTATE_SDAR(r13)
95BEGIN_FTR_SECTION
96	mfspr	r9, SPRN_SIER
97	std	r8, HSTATE_MMCR2(r13)
98	std	r9, HSTATE_SIER(r13)
99END_FTR_SECTION_IFSET(CPU_FTR_ARCH_207S)
100	mfspr	r3, SPRN_PMC1
101	mfspr	r5, SPRN_PMC2
102	mfspr	r6, SPRN_PMC3
103	mfspr	r7, SPRN_PMC4
104	mfspr	r8, SPRN_PMC5
105	mfspr	r9, SPRN_PMC6
106	stw	r3, HSTATE_PMC1(r13)
107	stw	r5, HSTATE_PMC2(r13)
108	stw	r6, HSTATE_PMC3(r13)
109	stw	r7, HSTATE_PMC4(r13)
110	stw	r8, HSTATE_PMC5(r13)
111	stw	r9, HSTATE_PMC6(r13)
11231:
113
114	/*
115	 * Put whatever is in the decrementer into the
116	 * hypervisor decrementer.
117	 */
118BEGIN_FTR_SECTION
119	ld	r5, HSTATE_KVM_VCORE(r13)
120	ld	r6, VCORE_KVM(r5)
121	ld	r9, KVM_HOST_LPCR(r6)
122	andis.	r9, r9, LPCR_LD@h
123END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300)
124	mfspr	r8,SPRN_DEC
125	mftb	r7
126BEGIN_FTR_SECTION
127	/* On POWER9, don't sign-extend if host LPCR[LD] bit is set */
128	bne	32f
129END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300)
130	extsw	r8,r8
13132:	mtspr	SPRN_HDEC,r8
132	add	r8,r8,r7
133	std	r8,HSTATE_DECEXP(r13)
134
135	/* Jump to partition switch code */
136	bl	kvmppc_hv_entry_trampoline
137	nop
138
139/*
140 * We return here in virtual mode after the guest exits
141 * with something that we can't handle in real mode.
142 * Interrupts are still hard-disabled.
143 */
144
145	/*
146	 * Register usage at this point:
147	 *
148	 * R1       = host R1
149	 * R2       = host R2
150	 * R3       = trap number on this thread
151	 * R12      = exit handler id
152	 * R13      = PACA
153	 */
154
155	/* Restore non-volatile host registers (r14 - r31) and CR */
156	REST_NVGPRS(r1)
157	ld	r4, _CCR(r1)
158	mtcr	r4
159
160	addi    r1, r1, SWITCH_FRAME_SIZE
161	ld	r0, PPC_LR_STKOFF(r1)
162	mtlr	r0
163	blr
164