diff options
author | Liu Yu <yu.liu@freescale.com> | 2012-02-29 20:20:19 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2012-07-10 08:07:22 -0400 |
commit | 2dc3d4cc6848572237efc5da9f79a2446474f00d (patch) | |
tree | e05f7c3713c1052790920779a565555f0eeb0f6e /arch/powerpc/kernel | |
parent | d729b900e589e1f20294de1abaef067d6b9b2124 (diff) |
powerpc/e500: make load_up_spe a normal fuction
So that we can call it when improving SPE switch like book3e did for fp
switch.
Signed-off-by: Liu Yu <yu.liu@freescale.com>
Signed-off-by: Olivia Yin <hong-hua.yin@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/head_fsl_booke.S | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S index 1f4434a38608..a01488fe6fbf 100644 --- a/arch/powerpc/kernel/head_fsl_booke.S +++ b/arch/powerpc/kernel/head_fsl_booke.S | |||
@@ -556,8 +556,10 @@ END_FTR_SECTION_IFSET(CPU_FTR_EMB_HV) | |||
556 | /* SPE Unavailable */ | 556 | /* SPE Unavailable */ |
557 | START_EXCEPTION(SPEUnavailable) | 557 | START_EXCEPTION(SPEUnavailable) |
558 | NORMAL_EXCEPTION_PROLOG(SPE_UNAVAIL) | 558 | NORMAL_EXCEPTION_PROLOG(SPE_UNAVAIL) |
559 | bne load_up_spe | 559 | beq 1f |
560 | addi r3,r1,STACK_FRAME_OVERHEAD | 560 | bl load_up_spe |
561 | b fast_exception_return | ||
562 | 1: addi r3,r1,STACK_FRAME_OVERHEAD | ||
561 | EXC_XFER_EE_LITE(0x2010, KernelSPE) | 563 | EXC_XFER_EE_LITE(0x2010, KernelSPE) |
562 | #else | 564 | #else |
563 | EXCEPTION(0x2020, SPE_UNAVAIL, SPEUnavailable, \ | 565 | EXCEPTION(0x2020, SPE_UNAVAIL, SPEUnavailable, \ |
@@ -778,7 +780,7 @@ tlb_write_entry: | |||
778 | /* Note that the SPE support is closely modeled after the AltiVec | 780 | /* Note that the SPE support is closely modeled after the AltiVec |
779 | * support. Changes to one are likely to be applicable to the | 781 | * support. Changes to one are likely to be applicable to the |
780 | * other! */ | 782 | * other! */ |
781 | load_up_spe: | 783 | _GLOBAL(load_up_spe) |
782 | /* | 784 | /* |
783 | * Disable SPE for the task which had SPE previously, | 785 | * Disable SPE for the task which had SPE previously, |
784 | * and save its SPE registers in its thread_struct. | 786 | * and save its SPE registers in its thread_struct. |
@@ -826,20 +828,7 @@ load_up_spe: | |||
826 | subi r4,r5,THREAD | 828 | subi r4,r5,THREAD |
827 | stw r4,last_task_used_spe@l(r3) | 829 | stw r4,last_task_used_spe@l(r3) |
828 | #endif /* !CONFIG_SMP */ | 830 | #endif /* !CONFIG_SMP */ |
829 | /* restore registers and return */ | 831 | blr |
830 | 2: REST_4GPRS(3, r11) | ||
831 | lwz r10,_CCR(r11) | ||
832 | REST_GPR(1, r11) | ||
833 | mtcr r10 | ||
834 | lwz r10,_LINK(r11) | ||
835 | mtlr r10 | ||
836 | REST_GPR(10, r11) | ||
837 | mtspr SPRN_SRR1,r9 | ||
838 | mtspr SPRN_SRR0,r12 | ||
839 | REST_GPR(9, r11) | ||
840 | REST_GPR(12, r11) | ||
841 | lwz r11,GPR11(r11) | ||
842 | rfi | ||
843 | 832 | ||
844 | /* | 833 | /* |
845 | * SPE unavailable trap from kernel - print a message, but let | 834 | * SPE unavailable trap from kernel - print a message, but let |