Commit 1492ec80 authored by Kumar Gala's avatar Kumar Gala Committed by Linus Torvalds

[PATCH] ppc32: Factor out common exception code into macro's for 4xx/Book-E

4xx and Book-E PPC's have several exception levels.  The code to handle
each level is fairly regular.  Turning the code into macro's will ease the
handling of future exception levels (debug) in forth coming chips.
Signed-off-by: default avatarKumar Gala <kumar.gala@freescale.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5be061ee
...@@ -46,26 +46,23 @@ ...@@ -46,26 +46,23 @@
#ifdef CONFIG_BOOKE #ifdef CONFIG_BOOKE
#include "head_booke.h" #include "head_booke.h"
#define TRANSFER_TO_HANDLER_EXC_LEVEL(exc_level) \
mtspr exc_level##_SPRG,r8; \
BOOKE_LOAD_EXC_LEVEL_STACK(exc_level); \
lwz r0,GPR10-INT_FRAME_SIZE(r8); \
stw r0,GPR10(r11); \
lwz r0,GPR11-INT_FRAME_SIZE(r8); \
stw r0,GPR11(r11); \
mfspr r8,exc_level##_SPRG
.globl mcheck_transfer_to_handler .globl mcheck_transfer_to_handler
mcheck_transfer_to_handler: mcheck_transfer_to_handler:
mtspr MCHECK_SPRG,r8 TRANSFER_TO_HANDLER_EXC_LEVEL(MCHECK)
BOOKE_LOAD_MCHECK_STACK
lwz r0,GPR10-INT_FRAME_SIZE(r8)
stw r0,GPR10(r11)
lwz r0,GPR11-INT_FRAME_SIZE(r8)
stw r0,GPR11(r11)
mfspr r8,MCHECK_SPRG
b transfer_to_handler_full b transfer_to_handler_full
.globl crit_transfer_to_handler .globl crit_transfer_to_handler
crit_transfer_to_handler: crit_transfer_to_handler:
mtspr CRIT_SPRG,r8 TRANSFER_TO_HANDLER_EXC_LEVEL(CRIT)
BOOKE_LOAD_CRIT_STACK
lwz r0,GPR10-INT_FRAME_SIZE(r8)
stw r0,GPR10(r11)
lwz r0,GPR11-INT_FRAME_SIZE(r8)
stw r0,GPR11(r11)
mfspr r8,CRIT_SPRG
/* fall through */ /* fall through */
#endif #endif
...@@ -783,99 +780,64 @@ exc_exit_restart_end: ...@@ -783,99 +780,64 @@ exc_exit_restart_end:
* time of the critical interrupt. * time of the critical interrupt.
* *
*/ */
.globl ret_from_crit_exc
ret_from_crit_exc:
REST_NVGPRS(r1)
lwz r3,_MSR(r1)
andi. r3,r3,MSR_PR
LOAD_MSR_KERNEL(r10,MSR_KERNEL)
bne user_exc_return
lwz r0,GPR0(r1)
lwz r2,GPR2(r1)
REST_4GPRS(3, r1)
REST_2GPRS(7, r1)
lwz r10,_XER(r1)
lwz r11,_CTR(r1)
mtspr SPRN_XER,r10
mtctr r11
PPC405_ERR77(0,r1)
stwcx. r0,0,r1 /* to clear the reservation */
lwz r11,_LINK(r1)
mtlr r11
lwz r10,_CCR(r1)
mtcrf 0xff,r10
#ifdef CONFIG_40x #ifdef CONFIG_40x
/* avoid any possible TLB misses here by turning off MSR.DR, we #define PPC_40x_TURN_OFF_MSR_DR \
* assume the instructions here are mapped by a pinned TLB entry */ /* avoid any possible TLB misses here by turning off MSR.DR, we \
li r10,MSR_IR * assume the instructions here are mapped by a pinned TLB entry */ \
mtmsr r10 li r10,MSR_IR; \
isync mtmsr r10; \
tophys(r1, r1) isync; \
tophys(r1, r1);
#else
#define PPC_40x_TURN_OFF_MSR_DR
#endif #endif
lwz r9,_DEAR(r1)
lwz r10,_ESR(r1) #define RET_FROM_EXC_LEVEL(exc_lvl_srr0, exc_lvl_srr1, exc_lvl_rfi) \
mtspr SPRN_DEAR,r9 REST_NVGPRS(r1); \
mtspr SPRN_ESR,r10 lwz r3,_MSR(r1); \
lwz r11,_NIP(r1) andi. r3,r3,MSR_PR; \
lwz r12,_MSR(r1) LOAD_MSR_KERNEL(r10,MSR_KERNEL); \
mtspr SPRN_CSRR0,r11 bne user_exc_return; \
mtspr SPRN_CSRR1,r12 lwz r0,GPR0(r1); \
lwz r9,GPR9(r1) lwz r2,GPR2(r1); \
lwz r12,GPR12(r1) REST_4GPRS(3, r1); \
lwz r10,GPR10(r1) REST_2GPRS(7, r1); \
lwz r11,GPR11(r1) lwz r10,_XER(r1); \
lwz r1,GPR1(r1) lwz r11,_CTR(r1); \
PPC405_ERR77_SYNC mtspr SPRN_XER,r10; \
rfci mtctr r11; \
b . /* prevent prefetch past rfci */ PPC405_ERR77(0,r1); \
stwcx. r0,0,r1; /* to clear the reservation */ \
lwz r11,_LINK(r1); \
mtlr r11; \
lwz r10,_CCR(r1); \
mtcrf 0xff,r10; \
PPC_40x_TURN_OFF_MSR_DR; \
lwz r9,_DEAR(r1); \
lwz r10,_ESR(r1); \
mtspr SPRN_DEAR,r9; \
mtspr SPRN_ESR,r10; \
lwz r11,_NIP(r1); \
lwz r12,_MSR(r1); \
mtspr exc_lvl_srr0,r11; \
mtspr exc_lvl_srr1,r12; \
lwz r9,GPR9(r1); \
lwz r12,GPR12(r1); \
lwz r10,GPR10(r1); \
lwz r11,GPR11(r1); \
lwz r1,GPR1(r1); \
PPC405_ERR77_SYNC; \
exc_lvl_rfi; \
b .; /* prevent prefetch past exc_lvl_rfi */
.globl ret_from_crit_exc
ret_from_crit_exc:
RET_FROM_EXC_LEVEL(SPRN_CSRR0, SPRN_CSRR1, RFCI)
#ifdef CONFIG_BOOKE #ifdef CONFIG_BOOKE
/*
* Return from a machine check interrupt, similar to a critical
* interrupt.
*/
.globl ret_from_mcheck_exc .globl ret_from_mcheck_exc
ret_from_mcheck_exc: ret_from_mcheck_exc:
REST_NVGPRS(r1) RET_FROM_EXC_LEVEL(SPRN_MCSRR0, SPRN_MCSRR1, RFMCI)
lwz r3,_MSR(r1)
andi. r3,r3,MSR_PR
LOAD_MSR_KERNEL(r10,MSR_KERNEL)
bne user_exc_return
lwz r0,GPR0(r1)
lwz r2,GPR2(r1)
REST_4GPRS(3, r1)
REST_2GPRS(7, r1)
lwz r10,_XER(r1)
lwz r11,_CTR(r1)
mtspr SPRN_XER,r10
mtctr r11
stwcx. r0,0,r1 /* to clear the reservation */
lwz r11,_LINK(r1)
mtlr r11
lwz r10,_CCR(r1)
mtcrf 0xff,r10
lwz r9,_DEAR(r1)
lwz r10,_ESR(r1)
mtspr SPRN_DEAR,r9
mtspr SPRN_ESR,r10
lwz r11,_NIP(r1)
lwz r12,_MSR(r1)
mtspr SPRN_MCSRR0,r11
mtspr SPRN_MCSRR1,r12
lwz r9,GPR9(r1)
lwz r12,GPR12(r1)
lwz r10,GPR10(r1)
lwz r11,GPR11(r1)
lwz r1,GPR1(r1)
RFMCI
#endif /* CONFIG_BOOKE */ #endif /* CONFIG_BOOKE */
/* /*
......
...@@ -67,46 +67,36 @@ ...@@ -67,46 +67,36 @@
#define CRIT_STACK_TOP (exception_stack_top) #define CRIT_STACK_TOP (exception_stack_top)
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
#define BOOKE_LOAD_CRIT_STACK \ #define BOOKE_LOAD_EXC_LEVEL_STACK(level) \
mfspr r8,SPRN_PIR; \ mfspr r8,SPRN_PIR; \
mulli r8,r8,BOOKE_EXCEPTION_STACK_SIZE; \ mulli r8,r8,BOOKE_EXCEPTION_STACK_SIZE; \
neg r8,r8; \ neg r8,r8; \
addis r8,r8,CRIT_STACK_TOP@ha; \ addis r8,r8,level##_STACK_TOP@ha; \
addi r8,r8,CRIT_STACK_TOP@l addi r8,r8,level##_STACK_TOP@l
#define BOOKE_LOAD_MCHECK_STACK \
mfspr r8,SPRN_PIR; \
mulli r8,r8,BOOKE_EXCEPTION_STACK_SIZE; \
neg r8,r8; \
addis r8,r8,MCHECK_STACK_TOP@ha; \
addi r8,r8,MCHECK_STACK_TOP@l
#else #else
#define BOOKE_LOAD_CRIT_STACK \ #define BOOKE_LOAD_EXC_LEVEL_STACK(level) \
lis r8,CRIT_STACK_TOP@h; \ lis r8,level##_STACK_TOP@h; \
ori r8,r8,CRIT_STACK_TOP@l ori r8,r8,level##_STACK_TOP@l
#define BOOKE_LOAD_MCHECK_STACK \
lis r8,MCHECK_STACK_TOP@h; \
ori r8,r8,MCHECK_STACK_TOP@l
#endif #endif
/* /*
* Exception prolog for critical exceptions. This is a little different * Exception prolog for critical/machine check exceptions. This is a
* from the normal exception prolog above since a critical exception * little different from the normal exception prolog above since a
* can potentially occur at any point during normal exception processing. * critical/machine check exception can potentially occur at any point
* Thus we cannot use the same SPRG registers as the normal prolog above. * during normal exception processing. Thus we cannot use the same SPRG
* Instead we use a portion of the critical exception stack at low physical * registers as the normal prolog above. Instead we use a portion of the
* addresses. * critical/machine check exception stack at low physical addresses.
*/ */
#define EXC_LEVEL_EXCEPTION_PROLOG(exc_level, exc_level_srr0, exc_level_srr1) \
#define CRITICAL_EXCEPTION_PROLOG \ mtspr exc_level##_SPRG,r8; \
mtspr CRIT_SPRG,r8; \ BOOKE_LOAD_EXC_LEVEL_STACK(exc_level);/* r8 points to the exc_level stack*/ \
BOOKE_LOAD_CRIT_STACK; /* r8 points to the crit stack */ \
stw r10,GPR10-INT_FRAME_SIZE(r8); \ stw r10,GPR10-INT_FRAME_SIZE(r8); \
stw r11,GPR11-INT_FRAME_SIZE(r8); \ stw r11,GPR11-INT_FRAME_SIZE(r8); \
mfcr r10; /* save CR in r10 for now */\ mfcr r10; /* save CR in r10 for now */\
mfspr r11,SPRN_CSRR1; /* check whether user or kernel */\ mfspr r11,exc_level_srr1; /* check whether user or kernel */\
andi. r11,r11,MSR_PR; \ andi. r11,r11,MSR_PR; \
mr r11,r8; \ mr r11,r8; \
mfspr r8,CRIT_SPRG; \ mfspr r8,exc_level##_SPRG; \
beq 1f; \ beq 1f; \
/* COMING FROM USER MODE */ \ /* COMING FROM USER MODE */ \
mfspr r11,SPRN_SPRG3; /* if from user, start at top of */\ mfspr r11,SPRN_SPRG3; /* if from user, start at top of */\
...@@ -122,9 +112,9 @@ ...@@ -122,9 +112,9 @@
stw r12,_DEAR(r11); /* since they may have had stuff */\ stw r12,_DEAR(r11); /* since they may have had stuff */\
mfspr r9,SPRN_ESR; /* in them at the point where the */\ mfspr r9,SPRN_ESR; /* in them at the point where the */\
stw r9,_ESR(r11); /* exception was taken */\ stw r9,_ESR(r11); /* exception was taken */\
mfspr r12,SPRN_CSRR0; \ mfspr r12,exc_level_srr0; \
stw r1,GPR1(r11); \ stw r1,GPR1(r11); \
mfspr r9,SPRN_CSRR1; \ mfspr r9,exc_level_srr1; \
stw r1,0(r11); \ stw r1,0(r11); \
mr r1,r11; \ mr r1,r11; \
rlwinm r9,r9,0,14,12; /* clear MSR_WE (necessary?) */\ rlwinm r9,r9,0,14,12; /* clear MSR_WE (necessary?) */\
...@@ -132,45 +122,10 @@ ...@@ -132,45 +122,10 @@
SAVE_4GPRS(3, r11); \ SAVE_4GPRS(3, r11); \
SAVE_2GPRS(7, r11) SAVE_2GPRS(7, r11)
/* #define CRITICAL_EXCEPTION_PROLOG \
* Exception prolog for machine check exceptions. This is similar to EXC_LEVEL_EXCEPTION_PROLOG(CRIT, SPRN_CSRR0, SPRN_CSRR1)
* the critical exception prolog, except that machine check exceptions
* have their stack.
*/
#define MCHECK_EXCEPTION_PROLOG \ #define MCHECK_EXCEPTION_PROLOG \
mtspr MCHECK_SPRG,r8; \ EXC_LEVEL_EXCEPTION_PROLOG(MCHECK, SPRN_MCSRR0, SPRN_MCSRR1)
BOOKE_LOAD_MCHECK_STACK; /* r8 points to the mcheck stack */\
stw r10,GPR10-INT_FRAME_SIZE(r8); \
stw r11,GPR11-INT_FRAME_SIZE(r8); \
mfcr r10; /* save CR in r10 for now */\
mfspr r11,SPRN_MCSRR1; /* check whether user or kernel */\
andi. r11,r11,MSR_PR; \
mr r11,r8; \
mfspr r8,MCHECK_SPRG; \
beq 1f; \
/* COMING FROM USER MODE */ \
mfspr r11,SPRN_SPRG3; /* if from user, start at top of */\
lwz r11,THREAD_INFO-THREAD(r11); /* this thread's kernel stack */\
addi r11,r11,THREAD_SIZE; \
1: subi r11,r11,INT_FRAME_SIZE; /* Allocate an exception frame */\
stw r10,_CCR(r11); /* save various registers */\
stw r12,GPR12(r11); \
stw r9,GPR9(r11); \
mflr r10; \
stw r10,_LINK(r11); \
mfspr r12,SPRN_DEAR; /* save DEAR and ESR in the frame */\
stw r12,_DEAR(r11); /* since they may have had stuff */\
mfspr r9,SPRN_ESR; /* in them at the point where the */\
stw r9,_ESR(r11); /* exception was taken */\
mfspr r12,SPRN_MCSRR0; \
stw r1,GPR1(r11); \
mfspr r9,SPRN_MCSRR1; \
stw r1,0(r11); \
mr r1,r11; \
rlwinm r9,r9,0,14,12; /* clear MSR_WE (necessary?) */\
stw r0,GPR0(r11); \
SAVE_4GPRS(3, r11); \
SAVE_2GPRS(7, r11)
/* /*
* Exception vectors. * Exception vectors.
...@@ -237,7 +192,6 @@ ...@@ -237,7 +192,6 @@
EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, COPY_EE, transfer_to_handler, \ EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, COPY_EE, transfer_to_handler, \
ret_from_except) ret_from_except)
/* Check for a single step debug exception while in an exception /* Check for a single step debug exception while in an exception
* handler before state has been saved. This is to catch the case * handler before state has been saved. This is to catch the case
* where an instruction that we are trying to single step causes * where an instruction that we are trying to single step causes
...@@ -291,7 +245,7 @@ ...@@ -291,7 +245,7 @@
lwz r9,GPR9(r11); \ lwz r9,GPR9(r11); \
lwz r12,GPR12(r11); \ lwz r12,GPR12(r11); \
mtspr CRIT_SPRG,r8; \ mtspr CRIT_SPRG,r8; \
BOOKE_LOAD_CRIT_STACK; /* r8 points to the crit stack */ \ BOOKE_LOAD_EXC_LEVEL_STACK(CRIT); /* r8 points to the debug stack */ \
lwz r10,GPR10-INT_FRAME_SIZE(r8); \ lwz r10,GPR10-INT_FRAME_SIZE(r8); \
lwz r11,GPR11-INT_FRAME_SIZE(r8); \ lwz r11,GPR11-INT_FRAME_SIZE(r8); \
mfspr r8,CRIT_SPRG; \ mfspr r8,CRIT_SPRG; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment