Changeset ffc277e in mainline for arch/mips/src/start.S


Ignore:
Timestamp:
2005-09-10T00:52:13Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f3a6c8e5
Parents:
b02e5d1
Message:

Cleanup of makefiles to have common options in one main makefile.

Add simple build process for different simulators for MIPS.
Added FPU context & lazy FPU context switching to MIPS.
Cleanup of MIPS linker script.
Moved MIPS kernel above 1MB. Not tested on real machine yet, but it might help.

There is something broken with gcc inlined memcpy (either simulator or gcc), it is disabled on BigEndian mips now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/src/start.S

    rb02e5d1 rffc277e  
    154154               
    155155.org 0x0
    156 tlb_refill_entry:
    157         j tlb_refill_handler
    158         nop
    159 
    160 .org 0x100
    161 cache_error_entry:
    162         j cache_error_handler
    163         nop
    164 
    165 .org 0x180
    166 norm_exception:
    167         j exception_handler
    168         nop     
    169 
    170 .org 0x200
    171 iv_exception:   
    172         j exception_handler
    173         nop     
    174 
    175 .org KA2PA(KERNEL_STARTUP_ADDRESS)
    176156kernel_image_start:
    177157        /* Load temporary stack */
     
    187167
    188168        .space TEMP_STACK_SIZE
    189 end_stack:     
     169end_stack:
     170
     171tlb_refill_entry:
     172        j tlb_refill_handler
     173        nop
     174
     175cache_error_entry:
     176        j cache_error_handler
     177        nop
     178
     179exception_entry:
     180        j exception_handler
     181        nop     
     182
     183       
    190184       
    191185exception_handler:
    192 exception_entry:
    193186        KERNEL_STACK_TO_K0
    194187        sub $k0, REGISTER_SPACE
Note: See TracChangeset for help on using the changeset viewer.