2009-11-02 20:02:29 +08:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License, version 2, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* Copyright SUSE Linux Products GmbH 2009
|
|
|
|
*
|
|
|
|
* Authors: Alexander Graf <agraf@suse.de>
|
|
|
|
*/
|
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
#define SHADOW_SLB_ENTRY_LEN 0x10
|
|
|
|
#define OFFSET_ESID(x) (SHADOW_SLB_ENTRY_LEN * x)
|
|
|
|
#define OFFSET_VSID(x) ((SHADOW_SLB_ENTRY_LEN * x) + 8)
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* *
|
|
|
|
* Entry code *
|
|
|
|
* *
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2010-04-16 06:11:48 +08:00
|
|
|
.macro LOAD_GUEST_SEGMENTS
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
/* Required state:
|
|
|
|
*
|
|
|
|
* MSR = ~IR|DR
|
|
|
|
* R13 = PACA
|
2010-01-08 09:58:03 +08:00
|
|
|
* R1 = host R1
|
|
|
|
* R2 = host R2
|
2010-04-16 06:11:48 +08:00
|
|
|
* R3 = shadow vcpu
|
2011-07-23 15:41:44 +08:00
|
|
|
* all other volatile GPRS = free except R4, R6
|
2010-04-16 06:11:48 +08:00
|
|
|
* SVCPU[CR] = guest CR
|
|
|
|
* SVCPU[XER] = guest XER
|
|
|
|
* SVCPU[CTR] = guest CTR
|
|
|
|
* SVCPU[LR] = guest LR
|
2009-11-02 20:02:29 +08:00
|
|
|
*/
|
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
BEGIN_FW_FTR_SECTION
|
2009-11-02 20:02:29 +08:00
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
/* Declare SLB shadow as 0 entries big */
|
2009-11-02 20:02:29 +08:00
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
ld r11, PACA_SLBSHADOWPTR(r13)
|
|
|
|
li r8, 0
|
|
|
|
stb r8, 3(r11)
|
2009-11-02 20:02:29 +08:00
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
END_FW_FTR_SECTION_IFSET(FW_FEATURE_LPAR)
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
/* Flush SLB */
|
|
|
|
|
KVM: PPC: Book3S PR: Fix invalidation of SLB entry 0 on guest entry
On entering a PR KVM guest, we invalidate the whole SLB before loading
up the guest entries. We do this using an slbia instruction, which
invalidates all entries except entry 0, followed by an slbie to
invalidate entry 0. However, the slbie turns out to be ineffective
in some circumstances (specifically when the host linear mapping uses
64k pages) because of errors in computing the parameter to the slbie.
The result is that the guest kernel hangs very early in boot because
it takes a DSI the first time it tries to access kernel data using
a linear mapping address in real mode.
Currently we construct bits 36 - 43 (big-endian numbering) of the slbie
parameter by taking bits 56 - 63 of the SLB VSID doubleword. These bits
for the tlbie are C (class, 1 bit), B (segment size, 2 bits) and 5
reserved bits. For the SLB VSID doubleword these are C (class, 1 bit),
reserved (1 bit), LP (large page size, 2 bits), and 4 reserved bits.
Thus we are not setting the B field correctly, and when LP = 01 as
it is for 64k pages, we are setting a reserved bit.
Rather than add more instructions to calculate the slbie parameter
correctly, this takes a simpler approach, which is to set entry 0 to
zeroes explicitly. Normally slbmte should not be used to invalidate
an entry, since it doesn't invalidate the ERATs, but it is OK to use
it to invalidate an entry if it is immediately followed by slbia,
which does invalidate the ERATs. (This has been confirmed with the
Power architects.) This approach takes fewer instructions and will
work whatever the contents of entry 0.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
2013-06-22 15:14:11 +08:00
|
|
|
li r10, 0
|
|
|
|
slbmte r10, r10
|
2009-11-02 20:02:29 +08:00
|
|
|
slbia
|
|
|
|
|
|
|
|
/* Fill SLB with our shadow */
|
|
|
|
|
2010-04-16 06:11:48 +08:00
|
|
|
lbz r12, SVCPU_SLB_MAX(r3)
|
2009-11-02 20:02:29 +08:00
|
|
|
mulli r12, r12, 16
|
2010-04-16 06:11:48 +08:00
|
|
|
addi r12, r12, SVCPU_SLB
|
|
|
|
add r12, r12, r3
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
/* for (r11 = kvm_slb; r11 < kvm_slb + kvm_slb_size; r11+=slb_entry) */
|
2010-04-16 06:11:48 +08:00
|
|
|
li r11, SVCPU_SLB
|
|
|
|
add r11, r11, r3
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
slb_loop_enter:
|
|
|
|
|
|
|
|
ld r10, 0(r11)
|
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
andis. r9, r10, SLB_ESID_V@h
|
2009-11-02 20:02:29 +08:00
|
|
|
beq slb_loop_enter_skip
|
|
|
|
|
|
|
|
ld r9, 8(r11)
|
|
|
|
slbmte r9, r10
|
|
|
|
|
|
|
|
slb_loop_enter_skip:
|
|
|
|
addi r11, r11, 16
|
|
|
|
cmpd cr0, r11, r12
|
|
|
|
blt slb_loop_enter
|
|
|
|
|
|
|
|
slb_do_enter:
|
|
|
|
|
2010-04-16 06:11:48 +08:00
|
|
|
.endm
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* *
|
|
|
|
* Exit code *
|
|
|
|
* *
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2010-04-16 06:11:48 +08:00
|
|
|
.macro LOAD_HOST_SEGMENTS
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
/* Register usage at this point:
|
|
|
|
*
|
2010-04-16 06:11:48 +08:00
|
|
|
* R1 = host R1
|
|
|
|
* R2 = host R2
|
|
|
|
* R12 = exit handler id
|
|
|
|
* R13 = shadow vcpu - SHADOW_VCPU_OFF [=PACA on PPC64]
|
|
|
|
* SVCPU.* = guest *
|
|
|
|
* SVCPU[CR] = guest CR
|
|
|
|
* SVCPU[XER] = guest XER
|
|
|
|
* SVCPU[CTR] = guest CTR
|
|
|
|
* SVCPU[LR] = guest LR
|
2009-11-02 20:02:29 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
/* Remove all SLB entries that are in use. */
|
2009-11-02 20:02:29 +08:00
|
|
|
|
2014-05-15 20:36:05 +08:00
|
|
|
li r0, r0
|
|
|
|
slbmte r0, r0
|
2009-11-02 20:02:29 +08:00
|
|
|
slbia
|
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
/* Restore bolted entries from the shadow */
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
ld r11, PACA_SLBSHADOWPTR(r13)
|
|
|
|
|
2014-05-15 20:38:03 +08:00
|
|
|
BEGIN_FW_FTR_SECTION
|
|
|
|
|
|
|
|
/* Declare SLB shadow as SLB_NUM_BOLTED entries big */
|
|
|
|
|
|
|
|
li r8, SLB_NUM_BOLTED
|
|
|
|
stb r8, 3(r11)
|
|
|
|
|
|
|
|
END_FW_FTR_SECTION_IFSET(FW_FEATURE_LPAR)
|
|
|
|
|
|
|
|
/* Manually load all entries from shadow SLB */
|
|
|
|
|
|
|
|
li r8, SLBSHADOW_SAVEAREA
|
|
|
|
li r7, SLBSHADOW_SAVEAREA + 8
|
|
|
|
|
|
|
|
.rept SLB_NUM_BOLTED
|
|
|
|
LDX_BE r10, r11, r8
|
|
|
|
cmpdi r10, 0
|
|
|
|
beq 1f
|
|
|
|
LDX_BE r9, r11, r7
|
|
|
|
slbmte r9, r10
|
|
|
|
1: addi r7, r7, SHADOW_SLB_ENTRY_LEN
|
|
|
|
addi r8, r8, SHADOW_SLB_ENTRY_LEN
|
|
|
|
.endr
|
|
|
|
|
|
|
|
isync
|
|
|
|
sync
|
2009-11-02 20:02:29 +08:00
|
|
|
|
|
|
|
slb_do_exit:
|
|
|
|
|
2010-04-16 06:11:48 +08:00
|
|
|
.endm
|