startup_stm32f100xb.s 11 KB

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