startup_stm32f103xe.s 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. /**
  2. *************** (C) COPYRIGHT 2017 STMicroelectronics ************************
  3. * @file startup_stm32f103xe.s
  4. * @author MCD Application Team
  5. * @version V4.2.0
  6. * @date 31-March-2017
  7. * @brief STM32F103xE Devices vector table for Atollic toolchain.
  8. * This module performs:
  9. * - Set the initial SP
  10. * - Set the initial PC == Reset_Handler,
  11. * - Set the vector table entries with the exceptions ISR address
  12. * - Configure the clock system
  13. * - Configure external SRAM mounted on STM3210E-EVAL board
  14. * to be used as data memory (optional, to be enabled by user)
  15. * - Branches to main in the C library (which eventually
  16. * calls main()).
  17. * After Reset the Cortex-M3 processor is in Thread mode,
  18. * priority is Privileged, and the Stack is set to Main.
  19. ******************************************************************************
  20. *
  21. * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  22. *
  23. * Redistribution and use in source and binary forms, with or without modification,
  24. * are permitted provided that the following conditions are met:
  25. * 1. Redistributions of source code must retain the above copyright notice,
  26. * this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright notice,
  28. * this list of conditions and the following disclaimer in the documentation
  29. * and/or other materials provided with the distribution.
  30. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  31. * may be used to endorse or promote products derived from this software
  32. * without specific prior written permission.
  33. *
  34. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  35. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  36. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  37. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  38. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  39. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  40. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  41. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  42. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  43. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  44. *
  45. ******************************************************************************
  46. */
  47. .syntax unified
  48. .cpu cortex-m3
  49. .fpu softvfp
  50. .thumb
  51. .global g_pfnVectors
  52. .global Default_Handler
  53. /* start address for the initialization values of the .data section.
  54. defined in linker script */
  55. .word _sidata
  56. /* start address for the .data section. defined in linker script */
  57. .word _sdata
  58. /* end address for the .data section. defined in linker script */
  59. .word _edata
  60. /* start address for the .bss section. defined in linker script */
  61. .word _sbss
  62. /* end address for the .bss section. defined in linker script */
  63. .word _ebss
  64. .equ BootRAM, 0xF1E0F85F
  65. /**
  66. * @brief This is the code that gets called when the processor first
  67. * starts execution following a reset event. Only the absolutely
  68. * necessary set is performed, after which the application
  69. * supplied main() routine is called.
  70. * @param None
  71. * @retval : None
  72. */
  73. .section .text.Reset_Handler
  74. .weak Reset_Handler
  75. .type Reset_Handler, %function
  76. Reset_Handler:
  77. /* Copy the data segment initializers from flash to SRAM */
  78. movs r1, #0
  79. b LoopCopyDataInit
  80. CopyDataInit:
  81. ldr r3, =_sidata
  82. ldr r3, [r3, r1]
  83. str r3, [r0, r1]
  84. adds r1, r1, #4
  85. LoopCopyDataInit:
  86. ldr r0, =_sdata
  87. ldr r3, =_edata
  88. adds r2, r0, r1
  89. cmp r2, r3
  90. bcc CopyDataInit
  91. ldr r2, =_sbss
  92. b LoopFillZerobss
  93. /* Zero fill the bss segment. */
  94. FillZerobss:
  95. movs r3, #0
  96. str r3, [r2], #4
  97. LoopFillZerobss:
  98. ldr r3, = _ebss
  99. cmp r2, r3
  100. bcc FillZerobss
  101. /* Call the clock system intitialization function.*/
  102. bl SystemInit
  103. /* Call static constructors */
  104. bl __libc_init_array
  105. /* Call the application's entry point.*/
  106. bl main
  107. bx lr
  108. .size Reset_Handler, .-Reset_Handler
  109. /**
  110. * @brief This is the code that gets called when the processor receives an
  111. * unexpected interrupt. This simply enters an infinite loop, preserving
  112. * the system state for examination by a debugger.
  113. *
  114. * @param None
  115. * @retval : None
  116. */
  117. .section .text.Default_Handler,"ax",%progbits
  118. Default_Handler:
  119. Infinite_Loop:
  120. b Infinite_Loop
  121. .size Default_Handler, .-Default_Handler
  122. /******************************************************************************
  123. *
  124. * The minimal vector table for a Cortex M3. Note that the proper constructs
  125. * must be placed on this to ensure that it ends up at physical address
  126. * 0x0000.0000.
  127. *
  128. ******************************************************************************/
  129. .section .isr_vector,"a",%progbits
  130. .type g_pfnVectors, %object
  131. .size g_pfnVectors, .-g_pfnVectors
  132. g_pfnVectors:
  133. .word _estack
  134. .word Reset_Handler
  135. .word NMI_Handler
  136. .word HardFault_Handler
  137. .word MemManage_Handler
  138. .word BusFault_Handler
  139. .word UsageFault_Handler
  140. .word 0
  141. .word 0
  142. .word 0
  143. .word 0
  144. .word SVC_Handler
  145. .word DebugMon_Handler
  146. .word 0
  147. .word PendSV_Handler
  148. .word SysTick_Handler
  149. .word WWDG_IRQHandler
  150. .word PVD_IRQHandler
  151. .word TAMPER_IRQHandler
  152. .word RTC_IRQHandler
  153. .word FLASH_IRQHandler
  154. .word RCC_IRQHandler
  155. .word EXTI0_IRQHandler
  156. .word EXTI1_IRQHandler
  157. .word EXTI2_IRQHandler
  158. .word EXTI3_IRQHandler
  159. .word EXTI4_IRQHandler
  160. .word DMA1_Channel1_IRQHandler
  161. .word DMA1_Channel2_IRQHandler
  162. .word DMA1_Channel3_IRQHandler
  163. .word DMA1_Channel4_IRQHandler
  164. .word DMA1_Channel5_IRQHandler
  165. .word DMA1_Channel6_IRQHandler
  166. .word DMA1_Channel7_IRQHandler
  167. .word ADC1_2_IRQHandler
  168. .word USB_HP_CAN1_TX_IRQHandler
  169. .word USB_LP_CAN1_RX0_IRQHandler
  170. .word CAN1_RX1_IRQHandler
  171. .word CAN1_SCE_IRQHandler
  172. .word EXTI9_5_IRQHandler
  173. .word TIM1_BRK_IRQHandler
  174. .word TIM1_UP_IRQHandler
  175. .word TIM1_TRG_COM_IRQHandler
  176. .word TIM1_CC_IRQHandler
  177. .word TIM2_IRQHandler
  178. .word TIM3_IRQHandler
  179. .word TIM4_IRQHandler
  180. .word I2C1_EV_IRQHandler
  181. .word I2C1_ER_IRQHandler
  182. .word I2C2_EV_IRQHandler
  183. .word I2C2_ER_IRQHandler
  184. .word SPI1_IRQHandler
  185. .word SPI2_IRQHandler
  186. .word USART1_IRQHandler
  187. .word USART2_IRQHandler
  188. .word USART3_IRQHandler
  189. .word EXTI15_10_IRQHandler
  190. .word RTC_Alarm_IRQHandler
  191. .word USBWakeUp_IRQHandler
  192. .word TIM8_BRK_IRQHandler
  193. .word TIM8_UP_IRQHandler
  194. .word TIM8_TRG_COM_IRQHandler
  195. .word TIM8_CC_IRQHandler
  196. .word ADC3_IRQHandler
  197. .word FSMC_IRQHandler
  198. .word SDIO_IRQHandler
  199. .word TIM5_IRQHandler
  200. .word SPI3_IRQHandler
  201. .word UART4_IRQHandler
  202. .word UART5_IRQHandler
  203. .word TIM6_IRQHandler
  204. .word TIM7_IRQHandler
  205. .word DMA2_Channel1_IRQHandler
  206. .word DMA2_Channel2_IRQHandler
  207. .word DMA2_Channel3_IRQHandler
  208. .word DMA2_Channel4_5_IRQHandler
  209. .word 0
  210. .word 0
  211. .word 0
  212. .word 0
  213. .word 0
  214. .word 0
  215. .word 0
  216. .word 0
  217. .word 0
  218. .word 0
  219. .word 0
  220. .word 0
  221. .word 0
  222. .word 0
  223. .word 0
  224. .word 0
  225. .word 0
  226. .word 0
  227. .word 0
  228. .word 0
  229. .word 0
  230. .word 0
  231. .word 0
  232. .word 0
  233. .word 0
  234. .word 0
  235. .word 0
  236. .word 0
  237. .word 0
  238. .word 0
  239. .word 0
  240. .word 0
  241. .word 0
  242. .word 0
  243. .word 0
  244. .word 0
  245. .word 0
  246. .word 0
  247. .word 0
  248. .word 0
  249. .word 0
  250. .word 0
  251. .word 0
  252. .word 0
  253. .word BootRAM /* @0x1E0. This is for boot in RAM mode for
  254. STM32F10x High Density devices. */
  255. /*******************************************************************************
  256. *
  257. * Provide weak aliases for each Exception handler to the Default_Handler.
  258. * As they are weak aliases, any function with the same name will override
  259. * this definition.
  260. *
  261. *******************************************************************************/
  262. .weak NMI_Handler
  263. .thumb_set NMI_Handler,Default_Handler
  264. .weak HardFault_Handler
  265. .thumb_set HardFault_Handler,Default_Handler
  266. .weak MemManage_Handler
  267. .thumb_set MemManage_Handler,Default_Handler
  268. .weak BusFault_Handler
  269. .thumb_set BusFault_Handler,Default_Handler
  270. .weak UsageFault_Handler
  271. .thumb_set UsageFault_Handler,Default_Handler
  272. .weak SVC_Handler
  273. .thumb_set SVC_Handler,Default_Handler
  274. .weak DebugMon_Handler
  275. .thumb_set DebugMon_Handler,Default_Handler
  276. .weak PendSV_Handler
  277. .thumb_set PendSV_Handler,Default_Handler
  278. .weak SysTick_Handler
  279. .thumb_set SysTick_Handler,Default_Handler
  280. .weak WWDG_IRQHandler
  281. .thumb_set WWDG_IRQHandler,Default_Handler
  282. .weak PVD_IRQHandler
  283. .thumb_set PVD_IRQHandler,Default_Handler
  284. .weak TAMPER_IRQHandler
  285. .thumb_set TAMPER_IRQHandler,Default_Handler
  286. .weak RTC_IRQHandler
  287. .thumb_set RTC_IRQHandler,Default_Handler
  288. .weak FLASH_IRQHandler
  289. .thumb_set FLASH_IRQHandler,Default_Handler
  290. .weak RCC_IRQHandler
  291. .thumb_set RCC_IRQHandler,Default_Handler
  292. .weak EXTI0_IRQHandler
  293. .thumb_set EXTI0_IRQHandler,Default_Handler
  294. .weak EXTI1_IRQHandler
  295. .thumb_set EXTI1_IRQHandler,Default_Handler
  296. .weak EXTI2_IRQHandler
  297. .thumb_set EXTI2_IRQHandler,Default_Handler
  298. .weak EXTI3_IRQHandler
  299. .thumb_set EXTI3_IRQHandler,Default_Handler
  300. .weak EXTI4_IRQHandler
  301. .thumb_set EXTI4_IRQHandler,Default_Handler
  302. .weak DMA1_Channel1_IRQHandler
  303. .thumb_set DMA1_Channel1_IRQHandler,Default_Handler
  304. .weak DMA1_Channel2_IRQHandler
  305. .thumb_set DMA1_Channel2_IRQHandler,Default_Handler
  306. .weak DMA1_Channel3_IRQHandler
  307. .thumb_set DMA1_Channel3_IRQHandler,Default_Handler
  308. .weak DMA1_Channel4_IRQHandler
  309. .thumb_set DMA1_Channel4_IRQHandler,Default_Handler
  310. .weak DMA1_Channel5_IRQHandler
  311. .thumb_set DMA1_Channel5_IRQHandler,Default_Handler
  312. .weak DMA1_Channel6_IRQHandler
  313. .thumb_set DMA1_Channel6_IRQHandler,Default_Handler
  314. .weak DMA1_Channel7_IRQHandler
  315. .thumb_set DMA1_Channel7_IRQHandler,Default_Handler
  316. .weak ADC1_2_IRQHandler
  317. .thumb_set ADC1_2_IRQHandler,Default_Handler
  318. .weak USB_HP_CAN1_TX_IRQHandler
  319. .thumb_set USB_HP_CAN1_TX_IRQHandler,Default_Handler
  320. .weak USB_LP_CAN1_RX0_IRQHandler
  321. .thumb_set USB_LP_CAN1_RX0_IRQHandler,Default_Handler
  322. .weak CAN1_RX1_IRQHandler
  323. .thumb_set CAN1_RX1_IRQHandler,Default_Handler
  324. .weak CAN1_SCE_IRQHandler
  325. .thumb_set CAN1_SCE_IRQHandler,Default_Handler
  326. .weak EXTI9_5_IRQHandler
  327. .thumb_set EXTI9_5_IRQHandler,Default_Handler
  328. .weak TIM1_BRK_IRQHandler
  329. .thumb_set TIM1_BRK_IRQHandler,Default_Handler
  330. .weak TIM1_UP_IRQHandler
  331. .thumb_set TIM1_UP_IRQHandler,Default_Handler
  332. .weak TIM1_TRG_COM_IRQHandler
  333. .thumb_set TIM1_TRG_COM_IRQHandler,Default_Handler
  334. .weak TIM1_CC_IRQHandler
  335. .thumb_set TIM1_CC_IRQHandler,Default_Handler
  336. .weak TIM2_IRQHandler
  337. .thumb_set TIM2_IRQHandler,Default_Handler
  338. .weak TIM3_IRQHandler
  339. .thumb_set TIM3_IRQHandler,Default_Handler
  340. .weak TIM4_IRQHandler
  341. .thumb_set TIM4_IRQHandler,Default_Handler
  342. .weak I2C1_EV_IRQHandler
  343. .thumb_set I2C1_EV_IRQHandler,Default_Handler
  344. .weak I2C1_ER_IRQHandler
  345. .thumb_set I2C1_ER_IRQHandler,Default_Handler
  346. .weak I2C2_EV_IRQHandler
  347. .thumb_set I2C2_EV_IRQHandler,Default_Handler
  348. .weak I2C2_ER_IRQHandler
  349. .thumb_set I2C2_ER_IRQHandler,Default_Handler
  350. .weak SPI1_IRQHandler
  351. .thumb_set SPI1_IRQHandler,Default_Handler
  352. .weak SPI2_IRQHandler
  353. .thumb_set SPI2_IRQHandler,Default_Handler
  354. .weak USART1_IRQHandler
  355. .thumb_set USART1_IRQHandler,Default_Handler
  356. .weak USART2_IRQHandler
  357. .thumb_set USART2_IRQHandler,Default_Handler
  358. .weak USART3_IRQHandler
  359. .thumb_set USART3_IRQHandler,Default_Handler
  360. .weak EXTI15_10_IRQHandler
  361. .thumb_set EXTI15_10_IRQHandler,Default_Handler
  362. .weak RTC_Alarm_IRQHandler
  363. .thumb_set RTC_Alarm_IRQHandler,Default_Handler
  364. .weak USBWakeUp_IRQHandler
  365. .thumb_set USBWakeUp_IRQHandler,Default_Handler
  366. .weak TIM8_BRK_IRQHandler
  367. .thumb_set TIM8_BRK_IRQHandler,Default_Handler
  368. .weak TIM8_UP_IRQHandler
  369. .thumb_set TIM8_UP_IRQHandler,Default_Handler
  370. .weak TIM8_TRG_COM_IRQHandler
  371. .thumb_set TIM8_TRG_COM_IRQHandler,Default_Handler
  372. .weak TIM8_CC_IRQHandler
  373. .thumb_set TIM8_CC_IRQHandler,Default_Handler
  374. .weak ADC3_IRQHandler
  375. .thumb_set ADC3_IRQHandler,Default_Handler
  376. .weak FSMC_IRQHandler
  377. .thumb_set FSMC_IRQHandler,Default_Handler
  378. .weak SDIO_IRQHandler
  379. .thumb_set SDIO_IRQHandler,Default_Handler
  380. .weak TIM5_IRQHandler
  381. .thumb_set TIM5_IRQHandler,Default_Handler
  382. .weak SPI3_IRQHandler
  383. .thumb_set SPI3_IRQHandler,Default_Handler
  384. .weak UART4_IRQHandler
  385. .thumb_set UART4_IRQHandler,Default_Handler
  386. .weak UART5_IRQHandler
  387. .thumb_set UART5_IRQHandler,Default_Handler
  388. .weak TIM6_IRQHandler
  389. .thumb_set TIM6_IRQHandler,Default_Handler
  390. .weak TIM7_IRQHandler
  391. .thumb_set TIM7_IRQHandler,Default_Handler
  392. .weak DMA2_Channel1_IRQHandler
  393. .thumb_set DMA2_Channel1_IRQHandler,Default_Handler
  394. .weak DMA2_Channel2_IRQHandler
  395. .thumb_set DMA2_Channel2_IRQHandler,Default_Handler
  396. .weak DMA2_Channel3_IRQHandler
  397. .thumb_set DMA2_Channel3_IRQHandler,Default_Handler
  398. .weak DMA2_Channel4_5_IRQHandler
  399. .thumb_set DMA2_Channel4_5_IRQHandler,Default_Handler
  400. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/