]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_LM3S6965_GCC/startup.c
Update to V4.3.0 as described in http://www.FreeRTOS.org/History.txt
[freertos] / Demo / CORTEX_LM3S6965_GCC / startup.c
1 //*****************************************************************************\r
2 //\r
3 // startup.c - Boot code for Stellaris.\r
4 //\r
5 // Copyright (c) 2005-2007 Luminary Micro, Inc.  All rights reserved.\r
6 // \r
7 // Software License Agreement\r
8 // \r
9 // Luminary Micro, Inc. (LMI) is supplying this software for use solely and\r
10 // exclusively on LMI's microcontroller products.\r
11 // \r
12 // The software is owned by LMI and/or its suppliers, and is protected under\r
13 // applicable copyright laws.  All rights are reserved.  Any use in violation\r
14 // of the foregoing restrictions may subject the user to criminal sanctions\r
15 // under applicable laws, as well as to civil liability for the breach of the\r
16 // terms and conditions of this license.\r
17 // \r
18 // THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
19 // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
20 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
21 // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
22 // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
23 // \r
24 // This is part of revision 1392 of the Stellaris Peripheral Driver Library.\r
25 //\r
26 //*****************************************************************************\r
27 \r
28 //*****************************************************************************\r
29 //\r
30 // Forward declaration of the default fault handlers.\r
31 //\r
32 //*****************************************************************************\r
33 void ResetISR(void);\r
34 static void NmiSR(void);\r
35 static void FaultISR(void);\r
36 static void IntDefaultHandler(void);\r
37 \r
38 //*****************************************************************************\r
39 //\r
40 // The entry point for the application.\r
41 //\r
42 //*****************************************************************************\r
43 extern int main(void);\r
44 extern void xPortPendSVHandler(void);\r
45 extern void xPortSysTickHandler(void);\r
46 extern void vEMAC_ISR(void);\r
47 extern void Timer0IntHandler(void);\r
48 \r
49 //*****************************************************************************\r
50 //\r
51 // Reserve space for the system stack.\r
52 //\r
53 //*****************************************************************************\r
54 #ifndef STACK_SIZE\r
55 #define STACK_SIZE                              64\r
56 #endif\r
57 static unsigned long pulStack[STACK_SIZE];\r
58 \r
59 //*****************************************************************************\r
60 //\r
61 // The minimal vector table for a Cortex M3.  Note that the proper constructs\r
62 // must be placed on this to ensure that it ends up at physical address\r
63 // 0x0000.0000.\r
64 //\r
65 //*****************************************************************************\r
66 __attribute__ ((section(".isr_vector")))\r
67 void (* const g_pfnVectors[])(void) =\r
68 {\r
69     (void (*)(void))((unsigned long)pulStack + sizeof(pulStack)),\r
70                                             // The initial stack pointer\r
71     ResetISR,                               // The reset handler\r
72     NmiSR,                                  // The NMI handler\r
73     FaultISR,                               // The hard fault handler\r
74     IntDefaultHandler,                      // The MPU fault handler\r
75     IntDefaultHandler,                      // The bus fault handler\r
76     IntDefaultHandler,                      // The usage fault handler\r
77     0,                                      // Reserved\r
78     0,                                      // Reserved\r
79     0,                                      // Reserved\r
80     0,                                      // Reserved\r
81     IntDefaultHandler,                      // SVCall handler\r
82     IntDefaultHandler,                      // Debug monitor handler\r
83     0,                                      // Reserved\r
84     xPortPendSVHandler,                     // The PendSV handler\r
85     xPortSysTickHandler,                    // The SysTick handler\r
86     IntDefaultHandler,                      // GPIO Port A\r
87     IntDefaultHandler,                      // GPIO Port B\r
88     IntDefaultHandler,                      // GPIO Port C\r
89     IntDefaultHandler,                      // GPIO Port D\r
90     IntDefaultHandler,                      // GPIO Port E\r
91     IntDefaultHandler,                      // UART0 Rx and Tx\r
92     IntDefaultHandler,                      // UART1 Rx and Tx\r
93     IntDefaultHandler,                      // SSI Rx and Tx\r
94     IntDefaultHandler,                      // I2C Master and Slave\r
95     IntDefaultHandler,                      // PWM Fault\r
96     IntDefaultHandler,                      // PWM Generator 0\r
97     IntDefaultHandler,                      // PWM Generator 1\r
98     IntDefaultHandler,                      // PWM Generator 2\r
99     IntDefaultHandler,                      // Quadrature Encoder\r
100     IntDefaultHandler,                      // ADC Sequence 0\r
101     IntDefaultHandler,                      // ADC Sequence 1\r
102     IntDefaultHandler,                      // ADC Sequence 2\r
103     IntDefaultHandler,                      // ADC Sequence 3\r
104     IntDefaultHandler,                      // Watchdog timer\r
105     Timer0IntHandler,                       // Timer 0 subtimer A\r
106     IntDefaultHandler,                      // Timer 0 subtimer B\r
107     IntDefaultHandler,                      // Timer 1 subtimer A\r
108     IntDefaultHandler,                      // Timer 1 subtimer B\r
109     IntDefaultHandler,                      // Timer 2 subtimer A\r
110     IntDefaultHandler,                      // Timer 2 subtimer B\r
111     IntDefaultHandler,                      // Analog Comparator 0\r
112     IntDefaultHandler,                      // Analog Comparator 1\r
113     IntDefaultHandler,                      // Analog Comparator 2\r
114     IntDefaultHandler,                      // System Control (PLL, OSC, BO)\r
115     IntDefaultHandler,                      // FLASH Control\r
116     IntDefaultHandler,                      // GPIO Port F\r
117     IntDefaultHandler,                      // GPIO Port G\r
118     IntDefaultHandler,                      // GPIO Port H\r
119     IntDefaultHandler,                      // UART2 Rx and Tx\r
120     IntDefaultHandler,                      // SSI1 Rx and Tx\r
121     IntDefaultHandler,                      // Timer 3 subtimer A\r
122     IntDefaultHandler,                      // Timer 3 subtimer B\r
123     IntDefaultHandler,                      // I2C1 Master and Slave\r
124     IntDefaultHandler,                      // Quadrature Encoder 1\r
125     IntDefaultHandler,                      // CAN0\r
126     IntDefaultHandler,                      // CAN1\r
127     0,                                      // Reserved\r
128     vEMAC_ISR,                              // Ethernet\r
129     IntDefaultHandler                       // Hibernate\r
130 };\r
131 \r
132 //*****************************************************************************\r
133 //\r
134 // The following are constructs created by the linker, indicating where the\r
135 // the "data" and "bss" segments reside in memory.  The initializers for the\r
136 // for the "data" segment resides immediately following the "text" segment.\r
137 //\r
138 //*****************************************************************************\r
139 extern unsigned long _etext;\r
140 extern unsigned long _data;\r
141 extern unsigned long _edata;\r
142 extern unsigned long _bss;\r
143 extern unsigned long _ebss;\r
144 \r
145 //*****************************************************************************\r
146 //\r
147 // This is the code that gets called when the processor first starts execution\r
148 // following a reset event.  Only the absolutely necessary set is performed,\r
149 // after which the application supplied main() routine is called.  Any fancy\r
150 // actions (such as making decisions based on the reset cause register, and\r
151 // resetting the bits in that register) are left solely in the hands of the\r
152 // application.\r
153 //\r
154 //*****************************************************************************\r
155 void\r
156 ResetISR(void)\r
157 {\r
158     unsigned long *pulSrc, *pulDest;\r
159 \r
160     //\r
161     // Copy the data segment initializers from flash to SRAM.\r
162     //\r
163     pulSrc = &_etext;\r
164     for(pulDest = &_data; pulDest < &_edata; )\r
165     {\r
166         *pulDest++ = *pulSrc++;\r
167     }\r
168 \r
169     //\r
170     // Zero fill the bss segment.\r
171     //\r
172     for(pulDest = &_bss; pulDest < &_ebss; )\r
173     {\r
174         *pulDest++ = 0;\r
175     }\r
176 \r
177     //\r
178     // Call the application's entry point.\r
179     //\r
180     main();\r
181 }\r
182 \r
183 //*****************************************************************************\r
184 //\r
185 // This is the code that gets called when the processor receives a NMI.  This\r
186 // simply enters an infinite loop, preserving the system state for examination\r
187 // by a debugger.\r
188 //\r
189 //*****************************************************************************\r
190 static void\r
191 NmiSR(void)\r
192 {\r
193     //\r
194     // Enter an infinite loop.\r
195     //\r
196     while(1)\r
197     {\r
198     }\r
199 }\r
200 \r
201 //*****************************************************************************\r
202 //\r
203 // This is the code that gets called when the processor receives a fault\r
204 // interrupt.  This simply enters an infinite loop, preserving the system state\r
205 // for examination by a debugger.\r
206 //\r
207 //*****************************************************************************\r
208 static void\r
209 FaultISR(void)\r
210 {\r
211     //\r
212     // Enter an infinite loop.\r
213     //\r
214     while(1)\r
215     {\r
216     }\r
217 }\r
218 \r
219 //*****************************************************************************\r
220 //\r
221 // This is the code that gets called when the processor receives an unexpected\r
222 // interrupt.  This simply enters an infinite loop, preserving the system state\r
223 // for examination by a debugger.\r
224 //\r
225 //*****************************************************************************\r
226 static void\r
227 IntDefaultHandler(void)\r
228 {\r
229     //\r
230     // Go into an infinite loop.\r
231     //\r
232     while(1)\r
233     {\r
234     }\r
235 }\r
236 \r
237 //*****************************************************************************\r
238 //\r
239 // A dummy printf function to satisfy the calls to printf from uip.  This\r
240 // avoids pulling in the run-time library.\r
241 //\r
242 //*****************************************************************************\r
243 int\r
244 uipprintf(const char *fmt, ...)\r
245 {\r
246     return(0);\r
247 }\r
248 \r