source: rtems/c/src/lib/libbsp/mips/jmr3904/start/start.S @ 1d0ee80e

4.104.114.95
Last change on this file since 1d0ee80e was f05b2ac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 16:01:48

Remove duplicate white lines.

  • Property mode set to 100644
File size: 4.8 KB
Line 
1/*
2 * start.S -- startup file for JMR3904 BSP based upon crt0.S from
3 * newlib-1.8.2/libgloss/mips and adapted for RTEMS.
4 *
5 * crt0.S -- startup file for MIPS.
6 *
7 * Copyright (c) 1995, 1996, 1997 Cygnus Support
8 *
9 * The authors hereby grant permission to use, copy, modify, distribute,
10 * and license this software and its documentation for any purpose, provided
11 * that existing copyright notices are retained in all copies and that this
12 * notice is included verbatim in any distributions. No written agreement,
13 * license, or royalty fee is required for any of the authorized uses.
14 * Modifications to this software may be copyrighted by their authors
15 * and need not follow the licensing terms described here, provided that
16 * the new terms are clearly indicated on the first page of each file where
17 * they apply.
18 */
19
20#include <rtems/asm.h>
21#include "regs.S"
22
23#ifdef __mips16
24/* This file contains 32 bit assembly code.  */
25        .set nomips16
26#endif
27
28/* This is for referencing addresses that are not in the .sdata or
29   .sbss section under embedded-pic, or before we've set up gp.  */
30#ifdef __mips_embedded_pic
31# ifdef __mips64
32#  define LA(t,x) la t,x-PICBASE ; daddu t,s0,t
33# else
34#  define LA(t,x) la t,x-PICBASE ; addu t,s0,t
35# endif
36#else /* __mips_embedded_pic */
37# define LA(t,x) la t,x
38#endif /* __mips_embedded_pic */
39
40        .text
41        .align  2
42
43/* Without the following nop, GDB thinks _start is a data variable.
44 * This is probably a bug in GDB in handling a symbol that is at the
45 * start of the .text section.
46 */
47        nop
48
49        .globl  _start
50        .ent    _start
51_start:
52        .set    noreorder
53        /* Get the address of start into $5 in a position independent fashion.
54        ** This lets us know whether we have been relocated or not.
55        */
56        $LF1 = . + 8
57        bal     $LF1
58        nop
59_branch:
60        move    $5, $31                         # $5 == where are we
61        li      $6, 0x8800000c                  # $6 == where we want to be
62/*      #la      $6,_branch */
63        beq     $5, $6, _start_in_ram
64        nop
65        /* relocate the code from EEPROM to RAM */
66        la      $7, _edata
67relocate:
68        lw      $8, ($5)                        # $8 = *EEPROM
69        addu    $5, $5, 4                       # EEPROM++
70        sw      $8, ($6)                        # *RAM = $8
71        addu    $6, $6, 4                       # RAM++
72        bne     $6, $7, relocate                # copied all the way to edata?
73        nop
74        la      $6, _start_in_ram
75        jr      $6
76        nop
77        .end _start
78
79        .globl  _start_in_ram
80        .ent _start_in_ram
81_start_in_ram:
82        nop
83
84#ifdef __mips_embedded_pic
85        PICBASE = .+8
86        bal     PICBASE
87        nop
88        move    s0,$31
89#endif
90
91        li      v0, SR_CU1|SR_PE|SR_FR|SR_KX|SR_SX|SR_UX
92        mtc0    v0, C0_SR
93        mtc0    zero, C0_CAUSE
94
95/* Check for FPU presence */
96#ifndef __mips_soft_float
97/* This doesn't work if there is no FPU.  We get illegal instruction
98   exceptions.  */
99        li      t2,0xAAAA5555
100        mtc1    t2,fp0          /* write to FPR 0 */
101        mtc1    zero,fp1        /* write to FPR 1 */
102        mfc1    t0,fp0
103        mfc1    t1,fp1
104        nop
105        bne     t0,t2,1f        /* check for match */
106        nop
107        bne     t1,zero,1f      /* double check */
108        nop
109#ifndef __mips64  /* Clear the FR bit */
110        li      v0, SR_CU1|SR_PE|SR_KX|SR_SX|SR_UX
111        mtc0    v0, C0_SR
112#endif
113        j       2f
114        nop
115#endif
1161:
117        li      v0, SR_PE|SR_FR|SR_KX|SR_SX|SR_UX
118        mtc0    v0, C0_SR
1192:
120/* Fix high bits, if any, of the PC so that exception handling
121   doesn't get confused.  */
122        LA (v0, 3f)
123        jr      v0
124        nop
1253:
126        LA (gp, _gp)                            # set the global data pointer
127        .end _start
128
129/*
130 * zero out the bss section.
131 */
132        .globl  __memsize
133        .globl  zerobss
134        .ent    zerobss
135zerobss:
136        LA (v0, _fbss)
137        LA (v1, _end)
1383:
139        sw      zero,0(v0)
140        bltu    v0,v1,3b
141        addiu   v0,v0,4                         # executed in delay slot
142
143        la      t0, _stack_init                 # initialize stack so we
144        /* We must subtract 24 bytes for the 3 8 byte arguments to main, in
145           case main wants to write them back to the stack.  The caller is
146           supposed to allocate stack space for parameters in registers in
147           the old MIPS ABIs.  We must do this even though we aren't passing
148           arguments, because main might be declared to have them.
149
150           Some ports need a larger alignment for the stack, so we subtract
151           32, which satisifes the stack for the arguments and keeps the
152           stack pointer better aligned.  */
153        subu    t0,t0,32
154        move    sp,t0                           # set stack pointer
155        .end    zerobss
156
157        .globl  exit .text
158        .globl  init
159        .ent    init
160init:
161
162        move    a0,zero                         # set argc to 0
163        jal     boot_card                       # call the program start function
164        nop
165
166        /* fall through to the "exit" routine */
167        jal     _sys_exit                       /* call libc exit to run the G++ */
168                                                /* destructors */
169        move    a0,v0                           /* pass through the exit code */
170        .end    init
171
172/*
173 * _sys_exit -- Exit from the application. Normally we cause a user trap
174 *          to return to the ROM monitor for another run. NOTE: This is
175 *          the only other routine we provide in the crt0.o object, since
176 *          it may be tied to the "_start" routine. It also allows
177 *          executables that contain a complete world to be linked with
178 *          just the crt0.o object.
179 */
180        .globl  _sys_exit
181        .ent _sys_exit
182_sys_exit:
1837:
184#ifdef GCRT0
185        jal     _mcleanup
186        nop
187#endif
188        /* break instruction can cope with 0xfffff, but GAS limits the range: */
189        break   1023
190        nop
191        b       7b                              # but loop back just in-case
192        nop
193        .end _sys_exit
194
195/* EOF crt0.S */
Note: See TracBrowser for help on using the repository browser.