Changes in / [3249673:20235a3] in mainline


Ignore:
Location:
kernel/arch/mips32
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/include/context_offset.h

    r3249673 r20235a3  
    6060# define OFFSET_F30     0x5c
    6161#endif /* KERNEL */
    62 
    63 /* istate_t */
    64 #define EOFFSET_AT     0x0
    65 #define EOFFSET_V0     0x4
    66 #define EOFFSET_V1     0x8
    67 #define EOFFSET_A0     0xc
    68 #define EOFFSET_A1     0x10
    69 #define EOFFSET_A2     0x14
    70 #define EOFFSET_A3     0x18
    71 #define EOFFSET_T0     0x1c
    72 #define EOFFSET_T1     0x20
    73 #define EOFFSET_T2     0x24
    74 #define EOFFSET_T3     0x28
    75 #define EOFFSET_T4     0x2c
    76 #define EOFFSET_T5     0x30
    77 #define EOFFSET_T6     0x34
    78 #define EOFFSET_T7     0x38
    79 #define EOFFSET_T8     0x3c
    80 #define EOFFSET_T9     0x40
    81 #define EOFFSET_GP     0x44
    82 #define EOFFSET_SP     0x48
    83 #define EOFFSET_RA     0x4c
    84 #define EOFFSET_LO     0x50
    85 #define EOFFSET_HI     0x54
    86 #define EOFFSET_STATUS 0x58
    87 #define EOFFSET_EPC    0x5c
    88 #define EOFFSET_K1     0x60
    89 #define REGISTER_SPACE 104      /* respect stack alignment */
    9062
    9163#ifdef __ASM__
  • kernel/arch/mips32/include/exception.h

    r3249673 r20235a3  
    6060
    6161typedef struct istate {
     62        /*
     63         * The first seven registers are arranged so that the istate structure
     64         * can be used both for exception handlers and for the syscall handler.
     65         */
     66        uint32_t a0;    /* arg1 */
     67        uint32_t a1;    /* arg2 */
     68        uint32_t a2;    /* arg3 */
     69        uint32_t a3;    /* arg4 */
     70        uint32_t t0;    /* arg5 */
     71        uint32_t t1;    /* arg6 */
     72        uint32_t v0;    /* arg7 */
     73        uint32_t v1;
    6274        uint32_t at;
    63         uint32_t v0;
    64         uint32_t v1;
    65         uint32_t a0;
    66         uint32_t a1;
    67         uint32_t a2;
    68         uint32_t a3;
    69         uint32_t t0;
    70         uint32_t t1;
    7175        uint32_t t2;
    7276        uint32_t t3;
     
    7579        uint32_t t6;
    7680        uint32_t t7;
     81        uint32_t s0;
     82        uint32_t s1;
     83        uint32_t s2;
     84        uint32_t s3;
     85        uint32_t s4;
     86        uint32_t s5;
     87        uint32_t s6;
     88        uint32_t s7;
    7789        uint32_t t8;
    7890        uint32_t t9;
     91        uint32_t kt0;
     92        uint32_t kt1;   /* We use it as thread-local pointer */
    7993        uint32_t gp;
    8094        uint32_t sp;
     95        uint32_t s8;
    8196        uint32_t ra;
    8297       
     
    8499        uint32_t hi;
    85100       
    86         uint32_t status;  /* cp0_status */
    87         uint32_t epc;     /* cp0_epc */
    88         uint32_t k1;      /* We use it as thread-local pointer */
     101        uint32_t status;        /* cp0_status */
     102        uint32_t epc;           /* cp0_epc */
     103
     104        uint32_t alignment;     /* to make sizeof(istate_t) a multiple of 8 */
    89105} istate_t;
    90106
     
    108124NO_TRACE static inline unative_t istate_get_fp(istate_t *istate)
    109125{
    110         /* FIXME */
    111        
    112         return 0;
     126        return istate->sp;
    113127}
    114128
  • kernel/arch/mips32/src/exception.c

    r3249673 r20235a3  
    7474void istate_decode(istate_t *istate)
    7575{
    76         printf("at=%p\tv0=%p\tv1=%p\n", istate->at, istate->v0, istate->v1);
    77         printf("a0=%p\ta1=%p\ta2=%p\n", istate->a0, istate->a1, istate->a2);
    78         printf("a3=%p\tt0=%p\tt1=%p\n", istate->a3, istate->t0, istate->t1);
    79         printf("t2=%p\tt3=%p\tt4=%p\n", istate->t2, istate->t3, istate->t4);
    80         printf("t5=%p\tt6=%p\tt7=%p\n", istate->t5, istate->t6, istate->t7);
    81         printf("t8=%p\tt9=%p\tgp=%p\n", istate->t8, istate->t9, istate->gp);
    82         printf("sp=%p\tra=%p\t\n", istate->sp, istate->ra);
    83         printf("lo=%p\thi=%p\t\n", istate->lo, istate->hi);
    84         printf("cp0_status=%p\tcp0_epc=%p\tk1=%p\n",
    85             istate->status, istate->epc, istate->k1);
     76        printf("epc=%p\tsta=%p\tlo =%p\thi =%p\n",
     77            istate->epc, istate->status, istate->lo, istate->hi);
     78        printf("a0 =%p\ta1 =%p\ta2 =%p\ta3 =%p\n",
     79            istate->a0, istate->a1, istate->a2, istate->a3);
     80        printf("t0 =%p\tt1 =%p\tt2 =%p\tt3 =%p\n",
     81            istate->t0, istate->t1, istate->t2, istate->t3);
     82        printf("t4 =%p\tt5 =%p\tt6 =%p\tt7 =%p\n",
     83            istate->t4, istate->t5, istate->t6, istate->t7);
     84        printf("t8 =%p\tt9 =%p\tv0 =%p\tv1 =%p\n",
     85            istate->t8, istate->t9, istate->v0, istate->v1);
     86        printf("s0 =%p\ts1 =%p\ts2 =%p\ts3 =%p\n",
     87            istate->s0, istate->s1, istate->s2, istate->s3);
     88        printf("s4 =%p\ts5 =%p\ts6 =%p\ts7 =%p\n",
     89            istate->s4, istate->s5, istate->s6, istate->s7);
     90        printf("s8 =%p\tat =%p\tkt0=%p\tkt1=%p\n",
     91            istate->s8, istate->at, istate->kt0, istate->kt1);
     92        printf("sp =%p\tra =%p\tgp =%p\n",
     93            istate->sp, istate->ra, istate->gp);
    8694}
    8795
     
    97105                ASSERT(THREAD);
    98106                istate->epc += 4;
    99                 istate->v1 = istate->k1;
     107                istate->v1 = istate->kt1;
    100108        } else
    101109                unhandled_exception(n, istate);
  • kernel/arch/mips32/src/start.S

    r3249673 r20235a3  
    4646
    4747/*
    48  * Which status bits should are thread-local:
     48 * Which status bits are thread-local:
    4949 * KSU(UM), EXL, ERL, IE
    5050 */
    5151#define REG_SAVE_MASK 0x1f
     52
     53#define ISTATE_OFFSET_A0        0
     54#define ISTATE_OFFSET_A1        4
     55#define ISTATE_OFFSET_A2        8
     56#define ISTATE_OFFSET_A3        12
     57#define ISTATE_OFFSET_T0        16
     58#define ISTATE_OFFSET_T1        20
     59#define ISTATE_OFFSET_V0        24
     60#define ISTATE_OFFSET_V1        28
     61#define ISTATE_OFFSET_AT        32
     62#define ISTATE_OFFSET_T2        36
     63#define ISTATE_OFFSET_T3        40
     64#define ISTATE_OFFSET_T4        44
     65#define ISTATE_OFFSET_T5        48
     66#define ISTATE_OFFSET_T6        52
     67#define ISTATE_OFFSET_T7        56
     68#define ISTATE_OFFSET_S0        60
     69#define ISTATE_OFFSET_S1        64
     70#define ISTATE_OFFSET_S2        68
     71#define ISTATE_OFFSET_S3        72
     72#define ISTATE_OFFSET_S4        76
     73#define ISTATE_OFFSET_S5        80
     74#define ISTATE_OFFSET_S6        84
     75#define ISTATE_OFFSET_S7        88
     76#define ISTATE_OFFSET_T8        92
     77#define ISTATE_OFFSET_T9        96
     78#define ISTATE_OFFSET_KT0       100
     79#define ISTATE_OFFSET_KT1       104
     80#define ISTATE_OFFSET_GP        108
     81#define ISTATE_OFFSET_SP        112
     82#define ISTATE_OFFSET_S8        116
     83#define ISTATE_OFFSET_RA        120
     84#define ISTATE_OFFSET_LO        124
     85#define ISTATE_OFFSET_HI        128
     86#define ISTATE_OFFSET_STATUS    132
     87#define ISTATE_OFFSET_EPC       136
     88#define ISTATE_OFFSET_ALIGNMENT 140
     89
     90#define ISTATE_SOFT_SIZE        144
    5291
    5392/*
     
    5897 */
    5998.macro REGISTERS_STORE_AND_EXC_RESET r
    60         sw $at, EOFFSET_AT(\r)
    61         sw $v0, EOFFSET_V0(\r)
    62         sw $v1, EOFFSET_V1(\r)
    63         sw $a0, EOFFSET_A0(\r)
    64         sw $a1, EOFFSET_A1(\r)
    65         sw $a2, EOFFSET_A2(\r)
    66         sw $a3, EOFFSET_A3(\r)
    67         sw $t0, EOFFSET_T0(\r)
    68         sw $t1, EOFFSET_T1(\r)
    69         sw $t2, EOFFSET_T2(\r)
    70         sw $t3, EOFFSET_T3(\r)
    71         sw $t4, EOFFSET_T4(\r)
    72         sw $t5, EOFFSET_T5(\r)
    73         sw $t6, EOFFSET_T6(\r)
    74         sw $t7, EOFFSET_T7(\r)
    75         sw $t8, EOFFSET_T8(\r)
    76         sw $t9, EOFFSET_T9(\r)
     99        sw $at, ISTATE_OFFSET_AT(\r)
     100        sw $v0, ISTATE_OFFSET_V0(\r)
     101        sw $v1, ISTATE_OFFSET_V1(\r)
     102        sw $a0, ISTATE_OFFSET_A0(\r)
     103        sw $a1, ISTATE_OFFSET_A1(\r)
     104        sw $a2, ISTATE_OFFSET_A2(\r)
     105        sw $a3, ISTATE_OFFSET_A3(\r)
     106        sw $t0, ISTATE_OFFSET_T0(\r)
     107        sw $t1, ISTATE_OFFSET_T1(\r)
     108        sw $t2, ISTATE_OFFSET_T2(\r)
     109        sw $t3, ISTATE_OFFSET_T3(\r)
     110        sw $t4, ISTATE_OFFSET_T4(\r)
     111        sw $t5, ISTATE_OFFSET_T5(\r)
     112        sw $t6, ISTATE_OFFSET_T6(\r)
     113        sw $t7, ISTATE_OFFSET_T7(\r)
     114        sw $t8, ISTATE_OFFSET_T8(\r)
     115        sw $t9, ISTATE_OFFSET_T9(\r)
     116        sw $s0, ISTATE_OFFSET_S0(\r)
     117        sw $s1, ISTATE_OFFSET_S1(\r)
     118        sw $s2, ISTATE_OFFSET_S2(\r)
     119        sw $s3, ISTATE_OFFSET_S3(\r)
     120        sw $s4, ISTATE_OFFSET_S4(\r)
     121        sw $s5, ISTATE_OFFSET_S5(\r)
     122        sw $s6, ISTATE_OFFSET_S6(\r)
     123        sw $s7, ISTATE_OFFSET_S7(\r)
     124        sw $s8, ISTATE_OFFSET_S8(\r)
    77125       
    78126        mflo $at
    79         sw $at, EOFFSET_LO(\r)
     127        sw $at, ISTATE_OFFSET_LO(\r)
    80128        mfhi $at
    81         sw $at, EOFFSET_HI(\r)
    82        
    83         sw $gp, EOFFSET_GP(\r)
    84         sw $ra, EOFFSET_RA(\r)
    85         sw $k1, EOFFSET_K1(\r)
     129        sw $at, ISTATE_OFFSET_HI(\r)
     130       
     131        sw $gp, ISTATE_OFFSET_GP(\r)
     132        sw $ra, ISTATE_OFFSET_RA(\r)
     133        sw $k0, ISTATE_OFFSET_KT0(\r)
     134        sw $k1, ISTATE_OFFSET_KT1(\r)
    86135       
    87136        mfc0 $t0, $status
     
    95144        and $t0, $t0, $t3
    96145       
    97         sw $t2, EOFFSET_STATUS(\r)
    98         sw $t1, EOFFSET_EPC(\r)
     146        sw $t2, ISTATE_OFFSET_STATUS(\r)
     147        sw $t1, ISTATE_OFFSET_EPC(\r)
    99148        mtc0 $t0, $status
    100149.endm
     
    106155         */
    107156        mfc0 $t0, $status
    108         lw $t1,EOFFSET_STATUS(\r)
     157        lw $t1, ISTATE_OFFSET_STATUS(\r)
    109158       
    110159        /* mask UM, EXL, ERL, IE */
     
    116165        mtc0 $t0, $status
    117166       
    118         lw $v0, EOFFSET_V0(\r)
    119         lw $v1, EOFFSET_V1(\r)
    120         lw $a0, EOFFSET_A0(\r)
    121         lw $a1, EOFFSET_A1(\r)
    122         lw $a2, EOFFSET_A2(\r)
    123         lw $a3, EOFFSET_A3(\r)
    124         lw $t0, EOFFSET_T0(\r)
    125         lw $t1, EOFFSET_T1(\r)
    126         lw $t2, EOFFSET_T2(\r)
    127         lw $t3, EOFFSET_T3(\r)
    128         lw $t4, EOFFSET_T4(\r)
    129         lw $t5, EOFFSET_T5(\r)
    130         lw $t6, EOFFSET_T6(\r)
    131         lw $t7, EOFFSET_T7(\r)
    132         lw $t8, EOFFSET_T8(\r)
    133         lw $t9, EOFFSET_T9(\r)
    134        
    135         lw $gp, EOFFSET_GP(\r)
    136         lw $ra, EOFFSET_RA(\r)
    137         lw $k1, EOFFSET_K1(\r)
    138        
    139         lw $at, EOFFSET_LO(\r)
     167        lw $v0, ISTATE_OFFSET_V0(\r)
     168        lw $v1, ISTATE_OFFSET_V1(\r)
     169        lw $a0, ISTATE_OFFSET_A0(\r)
     170        lw $a1, ISTATE_OFFSET_A1(\r)
     171        lw $a2, ISTATE_OFFSET_A2(\r)
     172        lw $a3, ISTATE_OFFSET_A3(\r)
     173        lw $t0, ISTATE_OFFSET_T0(\r)
     174        lw $t1, ISTATE_OFFSET_T1(\r)
     175        lw $t2, ISTATE_OFFSET_T2(\r)
     176        lw $t3, ISTATE_OFFSET_T3(\r)
     177        lw $t4, ISTATE_OFFSET_T4(\r)
     178        lw $t5, ISTATE_OFFSET_T5(\r)
     179        lw $t6, ISTATE_OFFSET_T6(\r)
     180        lw $t7, ISTATE_OFFSET_T7(\r)
     181        lw $t8, ISTATE_OFFSET_T8(\r)
     182        lw $t9, ISTATE_OFFSET_T9(\r)
     183       
     184        lw $gp, ISTATE_OFFSET_GP(\r)
     185        lw $ra, ISTATE_OFFSET_RA(\r)
     186        lw $k1, ISTATE_OFFSET_KT1(\r)
     187       
     188        lw $at, ISTATE_OFFSET_LO(\r)
    140189        mtlo $at
    141         lw $at, EOFFSET_HI(\r)
     190        lw $at, ISTATE_OFFSET_HI(\r)
    142191        mthi $at
    143192       
    144         lw $at, EOFFSET_EPC(\r)
     193        lw $at, ISTATE_OFFSET_EPC(\r)
    145194        mtc0 $at, $epc
    146195       
    147         lw $at, EOFFSET_AT(\r)
    148         lw $sp, EOFFSET_SP(\r)
     196        lw $at, ISTATE_OFFSET_AT(\r)
     197        lw $sp, ISTATE_OFFSET_SP(\r)
    149198.endm
    150199
     
    159208       
    160209        beq $k0, $0, 1f
    161         add $k0, $sp, 0
     210        move $k0, $sp
    162211       
    163212        /* move $k0 pointer to kernel stack */
     
    166215       
    167216        /* move $k0 (supervisor_sp) */
    168         lw $k0, 0($k0)
     217        lw $k0, ($k0)
    169218       
    170219        1:
     
    205254        KERNEL_STACK_TO_K0
    206255       
    207         sub $k0, REGISTER_SPACE
    208         sw $sp, EOFFSET_SP($k0)
     256        sub $k0, ISTATE_SOFT_SIZE
     257        sw $sp, ISTATE_OFFSET_SP($k0)
    209258        move $sp, $k0
    210259       
     
    227276        /* the $sp is automatically restored to former value */
    228277        eret
    229 
    230 #define SS_SP      EOFFSET_SP
    231 #define SS_STATUS  EOFFSET_STATUS
    232 #define SS_EPC     EOFFSET_EPC
    233 #define SS_K1      EOFFSET_K1
    234278
    235279/** Syscall entry
     
    252296        mfc0 $t3, $epc
    253297        mfc0 $t2, $status
    254         sw $t3, SS_EPC($sp)  /* save EPC */
    255         sw $k1, SS_K1($sp)   /* save $k1 not saved on context switch */
     298        sw $t3, ISTATE_OFFSET_EPC($sp)  /* save EPC */
     299        sw $k1, ISTATE_OFFSET_KT1($sp)  /* save $k1 not saved on context switch */
    256300       
    257301        and $t4, $t2, REG_SAVE_MASK  /* save only KSU, EXL, ERL, IE */
     
    260304        ori $t2, $t2, 0x1  /* set IE */
    261305       
    262         sw $t4, SS_STATUS($sp)
     306        sw $t4, ISTATE_OFFSET_STATUS($sp)
    263307        mtc0 $t2, $status
    264308       
    265309        /*
    266310         * Call the higher level system call handler.
    267          * We are going to reuse part of the unused exception stack frame.
    268311         *
    269312         */
    270         sw $t0, STACK_ARG4($sp)  /* save the 5th argument on the stack */
    271         sw $t1, STACK_ARG5($sp)  /* save the 6th argument on the stack */
     313        sw $t0, ISTATE_OFFSET_T0($sp)  /* save the 5th argument on the stack */
     314        sw $t1, ISTATE_OFFSET_T1($sp)  /* save the 6th argument on the stack */
    272315        jal syscall_handler
    273         sw $v0, STACK_ARG6($sp)  /* save the syscall number on the stack */
     316        sw $v0, ISTATE_OFFSET_V0($sp)  /* save the syscall number on the stack */
    274317       
    275318        /* restore status */
    276319        mfc0 $t2, $status
    277         lw $t3, SS_STATUS($sp)
     320        lw $t3, ISTATE_OFFSET_STATUS($sp)
    278321       
    279322        /*
     
    288331       
    289332        /* restore epc + 4 */
    290         lw $t2, SS_EPC($sp)
    291         lw $k1, SS_K1($sp)
     333        lw $t2, ISTATE_OFFSET_EPC($sp)
     334        lw $k1, ISTATE_OFFSET_KT1($sp)
    292335        addi $t2, $t2, 4
    293336        mtc0 $t2, $epc
    294337       
    295         lw $sp, SS_SP($sp)  /* restore $sp */
     338        lw $sp, ISTATE_OFFSET_SP($sp)  /* restore $sp */
    296339        eret
    297340
    298341tlb_refill_handler:
    299342        KERNEL_STACK_TO_K0
    300         sub $k0, REGISTER_SPACE
     343        sub $k0, ISTATE_SOFT_SIZE
    301344        REGISTERS_STORE_AND_EXC_RESET $k0
    302         sw $sp,EOFFSET_SP($k0)
    303         add $sp, $k0, 0
     345        sw $sp, ISTATE_OFFSET_SP($k0)
     346        move $sp, $k0
    304347       
    305348        jal tlb_refill
    306         add $a0, $sp, 0
     349        move $a0, $sp
    307350       
    308351        REGISTERS_LOAD $sp
     
    311354cache_error_handler:
    312355        KERNEL_STACK_TO_K0
    313         sub $k0, REGISTER_SPACE
     356        sub $k0, ISTATE_SOFT_SIZE
    314357        REGISTERS_STORE_AND_EXC_RESET $k0
    315         sw $sp,EOFFSET_SP($k0)
    316         add $sp, $k0, 0
     358        sw $sp, ISTATE_OFFSET_SP($k0)
     359        move $sp, $k0
    317360       
    318361        jal cache_error
    319         add $a0, $sp, 0
     362        move $a0, $sp
    320363       
    321364        REGISTERS_LOAD $sp
     
    323366
    324367userspace_asm:
    325         add $sp, $a0, 0
    326         add $v0, $a1, 0
    327         add $t9, $a2, 0    /* set up correct entry into PIC code */
     368        move $sp, $a0
     369        move $v0, $a1
     370        move $t9, $a2      /* set up correct entry into PIC code */
    328371        xor $a0, $a0, $a0  /* $a0 is defined to hold pcb_ptr */
    329372                           /* set it to 0 */
Note: See TracChangeset for help on using the changeset viewer.