vserver 2.0 rc7
[linux-2.6.git] / arch / ppc / kernel / head_booke.h
index 618b469..f213d12 100644 (file)
        mfspr   r11,SPRN_SRR1;          /* check whether user or kernel    */\
        andi.   r11,r11,MSR_PR;                                              \
        beq     1f;                                                          \
-       mfspr   r1,SPRG3;               /* if from user, start at top of   */\
+       mfspr   r1,SPRN_SPRG3;          /* if from user, start at top of   */\
        lwz     r1,THREAD_INFO-THREAD(r1); /* this thread's kernel stack   */\
        addi    r1,r1,THREAD_SIZE;                                           \
 1:     subi    r1,r1,INT_FRAME_SIZE;   /* Allocate an exception frame     */\
-       tophys(r11,r1);                                                      \
+       mr      r11,r1;                                                      \
        stw     r10,_CCR(r11);          /* save various registers          */\
        stw     r12,GPR12(r11);                                              \
        stw     r9,GPR9(r11);                                                \
-       mfspr   r10,SPRG0;                                                   \
+       mfspr   r10,SPRN_SPRG0;                                              \
        stw     r10,GPR10(r11);                                              \
-       mfspr   r12,SPRG1;                                                   \
+       mfspr   r12,SPRN_SPRG1;                                              \
        stw     r12,GPR11(r11);                                              \
        mflr    r10;                                                         \
        stw     r10,_LINK(r11);                                              \
-       mfspr   r10,SPRG4R;                                                  \
-       mfspr   r12,SRR0;                                                    \
+       mfspr   r10,SPRN_SPRG4R;                                             \
+       mfspr   r12,SPRN_SRR0;                                               \
        stw     r10,GPR1(r11);                                               \
-       mfspr   r9,SRR1;                                                     \
+       mfspr   r9,SPRN_SRR1;                                                \
        stw     r10,0(r11);                                                  \
        rlwinm  r9,r9,0,14,12;          /* clear MSR_WE (necessary?)       */\
        stw     r0,GPR0(r11);                                                \
        SAVE_4GPRS(3, r11);                                                  \
        SAVE_2GPRS(7, r11)
 
+/* To handle the additional exception priority levels on 40x and Book-E
+ * processors we allocate a 4k stack per additional priority level. The various
+ * head_xxx.S files allocate space (exception_stack_top) for each priority's
+ * stack times the number of CPUs
+ *
+ * On 40x critical is the only additional level
+ * On 44x/e500 we have critical and machine check
+ *
+ * Additionally we reserve a SPRG for each priority level so we can free up a
+ * GPR to use as the base for indirect access to the exception stacks.  This
+ * is necessary since the MMU is always on, for Book-E parts, and the stacks
+ * are offset from KERNELBASE.
+ *
+ */
+#define BOOKE_EXCEPTION_STACK_SIZE     (8192)
+
+/* CRIT_SPRG only used in critical exception handling */
+#define CRIT_SPRG      SPRN_SPRG2
+/* MCHECK_SPRG only used in critical exception handling */
+#define MCHECK_SPRG    SPRN_SPRG6W
+
+#define MCHECK_STACK_TOP       (exception_stack_top - 4096)
+#define CRIT_STACK_TOP         (exception_stack_top)
+
+#ifdef CONFIG_SMP
+#define BOOKE_LOAD_CRIT_STACK                          \
+       mfspr   r8,SPRN_PIR;                            \
+       mulli   r8,r8,BOOKE_EXCEPTION_STACK_SIZE;       \
+       neg     r8,r8;                                  \
+       addis   r8,r8,CRIT_STACK_TOP@ha;                \
+       addi    r8,r8,CRIT_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
+#define BOOKE_LOAD_CRIT_STACK                          \
+       lis     r8,CRIT_STACK_TOP@h;                    \
+       ori     r8,r8,CRIT_STACK_TOP@l
+#define BOOKE_LOAD_MCHECK_STACK                                \
+       lis     r8,MCHECK_STACK_TOP@h;                  \
+       ori     r8,r8,MCHECK_STACK_TOP@l
+#endif
+
 /*
  * Exception prolog for critical exceptions.  This is a little different
  * from the normal exception prolog above since a critical exception
  * can potentially occur at any point during normal exception processing.
  * Thus we cannot use the same SPRG registers as the normal prolog above.
- * Instead we use a couple of words of memory at low physical addresses.
- * This is OK since we don't support SMP on these processors. For Book E
- * processors, we also have a reserved register (SPRG2) that is only used
- * in critical exceptions so we can free up a GPR to use as the base for
- * indirect access to the critical exception save area.  This is necessary
- * since the MMU is always on and the save area is offset from KERNELBASE.
+ * Instead we use a portion of the critical exception stack at low physical
+ * addresses.
  */
+
 #define CRITICAL_EXCEPTION_PROLOG                                           \
-       mtspr   SPRG2,r8;               /* SPRG2 only used in criticals */   \
-       lis     r8,crit_save@ha;                                             \
-       stw     r10,crit_r10@l(r8);                                          \
-       stw     r11,crit_r11@l(r8);                                          \
-       mfspr   r10,SPRG0;                                                   \
-       stw     r10,crit_sprg0@l(r8);                                        \
-       mfspr   r10,SPRG1;                                                   \
-       stw     r10,crit_sprg1@l(r8);                                        \
-       mfspr   r10,SPRG4R;                                                  \
-       stw     r10,crit_sprg4@l(r8);                                        \
-       mfspr   r10,SPRG5R;                                                  \
-       stw     r10,crit_sprg5@l(r8);                                        \
-       mfspr   r10,SPRG7R;                                                  \
-       stw     r10,crit_sprg7@l(r8);                                        \
-       mfspr   r10,SPRN_PID;                                                \
-       stw     r10,crit_pid@l(r8);                                          \
-       mfspr   r10,SRR0;                                                    \
-       stw     r10,crit_srr0@l(r8);                                         \
-       mfspr   r10,SRR1;                                                    \
-       stw     r10,crit_srr1@l(r8);                                         \
-       mfspr   r8,SPRG2;               /* SPRG2 only used in criticals */   \
+       mtspr   CRIT_SPRG,r8;                                                \
+       BOOKE_LOAD_CRIT_STACK;          /* r8 points to the crit 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_CSRR1;         /* check whether user or kernel    */\
        andi.   r11,r11,MSR_PR;                                              \
-       lis     r11,critical_stack_top@h;                                    \
-       ori     r11,r11,critical_stack_top@l;                                \
+       mr      r11,r8;                                                      \
+       mfspr   r8,CRIT_SPRG;                                                \
        beq     1f;                                                          \
        /* COMING FROM USER MODE */                                          \
-       mfspr   r11,SPRG3;              /* if from user, start at top of   */\
+       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     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,CSRR0;                                                   \
+       mfspr   r12,SPRN_CSRR0;                                              \
        stw     r1,GPR1(r11);                                                \
-       mfspr   r9,CSRR1;                                                    \
+       mfspr   r9,SPRN_CSRR1;                                               \
        stw     r1,0(r11);                                                   \
-       tovirt(r1,r11);                                                      \
+       mr      r1,r11;                                                      \
        rlwinm  r9,r9,0,14,12;          /* clear MSR_WE (necessary?)       */\
        stw     r0,GPR0(r11);                                                \
        SAVE_4GPRS(3, r11);                                                  \
 /*
  * Exception prolog for machine check exceptions.  This is similar to
  * the critical exception prolog, except that machine check exceptions
- * have their own save area.  For Book E processors, we also have a
- * reserved register (SPRG6) that is only used in machine check exceptions
- * so we can free up a GPR to use as the base for indirect access to the
- * machine check exception save area.  This is necessary since the MMU
- * is always on and the save area is offset from KERNELBASE.
+ * have their stack.
  */
 #define MCHECK_EXCEPTION_PROLOG                                             \
-       mtspr   SPRG6W,r8;              /* SPRG6 used in machine checks */   \
-       lis     r8,mcheck_save@ha;                                           \
-       stw     r10,mcheck_r10@l(r8);                                        \
-       stw     r11,mcheck_r11@l(r8);                                        \
-       mfspr   r10,SPRG0;                                                   \
-       stw     r10,mcheck_sprg0@l(r8);                                      \
-       mfspr   r10,SPRG1;                                                   \
-       stw     r10,mcheck_sprg1@l(r8);                                      \
-       mfspr   r10,SPRG4R;                                                  \
-       stw     r10,mcheck_sprg4@l(r8);                                      \
-       mfspr   r10,SPRG5R;                                                  \
-       stw     r10,mcheck_sprg5@l(r8);                                      \
-       mfspr   r10,SPRG7R;                                                  \
-       stw     r10,mcheck_sprg7@l(r8);                                      \
-       mfspr   r10,SPRN_PID;                                                \
-       stw     r10,mcheck_pid@l(r8);                                        \
-       mfspr   r10,SRR0;                                                    \
-       stw     r10,mcheck_srr0@l(r8);                                       \
-       mfspr   r10,SRR1;                                                    \
-       stw     r10,mcheck_srr1@l(r8);                                       \
-       mfspr   r10,CSRR0;                                                   \
-       stw     r10,mcheck_csrr0@l(r8);                                      \
-       mfspr   r10,CSRR1;                                                   \
-       stw     r10,mcheck_csrr1@l(r8);                                      \
-       mfspr   r8,SPRG6R;              /* SPRG6 used in machine checks */   \
+       mtspr   MCHECK_SPRG,r8;                                              \
+       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;                                              \
-       lis     r11,mcheck_stack_top@h;                                      \
-       ori     r11,r11,mcheck_stack_top@l;                                  \
+       mr      r11,r8;                                                      \
+       mfspr   r8,MCHECK_SPRG;                                              \
        beq     1f;                                                          \
        /* COMING FROM USER MODE */                                          \
-       mfspr   r11,SPRG3;              /* if from user, start at top of   */\
+       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     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,MCSRR0;                                                  \
+       mfspr   r12,SPRN_MCSRR0;                                             \
        stw     r1,GPR1(r11);                                                \
-       mfspr   r9,MCSRR1;                                                   \
+       mfspr   r9,SPRN_MCSRR1;                                              \
        stw     r1,0(r11);                                                   \
-       tovirt(r1,r11);                                                      \
+       mr      r1,r11;                                                      \
        rlwinm  r9,r9,0,14,12;          /* clear MSR_WE (necessary?)       */\
        stw     r0,GPR0(r11);                                                \
        SAVE_4GPRS(3, r11);                                                  \
@@ -194,8 +195,8 @@ label:
        CRITICAL_EXCEPTION_PROLOG;                              \
        addi    r3,r1,STACK_FRAME_OVERHEAD;                     \
        EXC_XFER_TEMPLATE(hdlr, n+2, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), \
-                         NOCOPY, transfer_to_handler_full, \
-                         ret_from_except_full)
+                         NOCOPY, crit_transfer_to_handler, \
+                         ret_from_crit_exc)
 
 #define MCHECK_EXCEPTION(n, label, hdlr)                       \
        START_EXCEPTION(label);                                 \
@@ -285,15 +286,15 @@ label:
        lwz     r0,GPR0(r11);                                                 \
        lwz     r1,GPR1(r11);                                                 \
        mtcrf   0x80,r10;                                                     \
-       mtspr   CSRR0,r12;                                                    \
-       mtspr   CSRR1,r9;                                                     \
+       mtspr   SPRN_CSRR0,r12;                                               \
+       mtspr   SPRN_CSRR1,r9;                                                \
        lwz     r9,GPR9(r11);                                                 \
        lwz     r12,GPR12(r11);                                               \
-       mtspr   SPRG2,r8;               /* SPRG2 only used in criticals */    \
-       lis     r8,crit_save@ha;                                              \
-       lwz     r10,crit_r10@l(r8);                                           \
-       lwz     r11,crit_r11@l(r8);                                           \
-       mfspr   r8,SPRG2;                                                     \
+       mtspr   CRIT_SPRG,r8;                                                 \
+       BOOKE_LOAD_CRIT_STACK;          /* r8 points to the crit stack */     \
+       lwz     r10,GPR10-INT_FRAME_SIZE(r8);                                 \
+       lwz     r11,GPR11-INT_FRAME_SIZE(r8);                                 \
+       mfspr   r8,CRIT_SPRG;                                                 \
                                                                              \
        rfci;                                                                 \
        b       .;                                                            \
@@ -336,4 +337,11 @@ label:
        addi    r3,r1,STACK_FRAME_OVERHEAD;                                   \
        EXC_XFER_LITE(0x0900, timer_interrupt)
 
+#define FP_UNAVAILABLE_EXCEPTION                                             \
+       START_EXCEPTION(FloatingPointUnavailable)                             \
+       NORMAL_EXCEPTION_PROLOG;                                              \
+       bne     load_up_fpu;            /* if from user, just load it up */   \
+       addi    r3,r1,STACK_FRAME_OVERHEAD;                                   \
+       EXC_XFER_EE_LITE(0x800, KernelFP)
+
 #endif /* __HEAD_BOOKE_H__ */