]> git.sur5r.net Git - freertos/blob
eab93d1831cec56486c5f02f5b811c70dc54ad69
[freertos] /
1 /******************************************************************************
2 *
3 * Copyright (C) 2014 Xilinx, Inc. All rights reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * Use of the Software is limited solely to applications:
16 * (a) running on a Xilinx device, or
17 * (b) that interact with a Xilinx device through a bus or interconnect.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * XILINX  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 *
27 * Except as contained in this notice, the name of the Xilinx shall not be used
28 * in advertising or otherwise to promote the sale, use or other dealings in
29 * this Software without prior written authorization from Xilinx.
30 *
31 ******************************************************************************/
32 /*****************************************************************************/
33 /**
34 * @file xil-crt0.S
35 *
36 * <pre>
37 * MODIFICATION HISTORY:
38 *
39 * Ver   Who  Date     Changes
40 * ----- ---- -------- ---------------------------------------------------
41 * 5.00  pkp  05/21/14 Initial version
42 * </pre>
43 *
44 * @note
45 *
46 * None.
47 *
48 ******************************************************************************/
49
50         .file   "xil-crt0.S"
51         .section ".got2","aw"
52         .align  2
53
54         .text
55 .Lsbss_start:
56         .long   __sbss_start
57
58 .Lsbss_end:
59         .long   __sbss_end
60
61 .Lbss_start:
62         .long   __bss_start__
63
64 .Lbss_end:
65         .long   __bss_end__
66
67
68
69         .globl  _startup
70 _startup:
71
72         mov     x0, #0
73
74         /* clear sbss */
75         ldr     w1,.Lsbss_start         /* calculate beginning of the SBSS */
76         ldr     w2,.Lsbss_end           /* calculate end of the SBSS */
77         uxtw    x1, w1                  /*zero extension to w1 register*/
78         uxtw    x2, w2                  /*zero extension to w2 register*/
79
80 .Lloop_sbss:
81         cmp     x1,x2
82         bge     .Lenclsbss              /* If no SBSS, no clearing required */
83         str     x0, [x1], #8
84         b       .Lloop_sbss
85
86 .Lenclsbss:
87         /* clear bss */
88         ldr     w1,.Lbss_start          /* calculate beginning of the BSS */
89         ldr     w2,.Lbss_end            /* calculate end of the BSS */
90         uxtw    x1, w1                  /*zero extension to w1 register*/
91         uxtw    x2, w2                  /*zero extension to w2 register*/
92
93 .Lloop_bss:
94         cmp     x1,x2
95         bge     .Lenclbss               /* If no BSS, no clearing required */
96         str     x0, [x1], #8
97         b       .Lloop_bss
98
99 .Lenclbss:
100
101         bl      Init_Uart               /* Initialize UART */
102
103
104         /* make sure argc and argv are valid */
105         mov     x0, #0
106         mov     x1, #0
107
108         bl      main                    /* Jump to main C code */
109
110
111
112         bl      _exit
113
114 .Lexit: /* should never get here */
115         b .Lexit
116
117 .Lstart:
118         .size   _startup,.Lstart-_startup