stm32f10x_vector.s 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. ;******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
  2. ;* File Name : stm32f10x_vector.s
  3. ;* Author : MCD Application Team
  4. ;* Version : V2.0.3
  5. ;* Date : 09/22/2008
  6. ;* Description : STM32F10x vector table for RVMDK toolchain.
  7. ;* This module performs:
  8. ;* - Set the initial SP
  9. ;* - Set the initial PC == Reset_Handler
  10. ;* - Set the vector table entries with the exceptions ISR address
  11. ;* - Configure external SRAM mounted on STM3210E-EVAL board
  12. ;* to be used as data memory (optional, to be enabled by user)
  13. ;* - Branches to __main in the C library (which eventually
  14. ;* calls main()).
  15. ;* After Reset the CortexM3 processor is in Thread mode,
  16. ;* priority is Privileged, and the Stack is set to Main.
  17. ;* <<< Use Configuration Wizard in Context Menu >>>
  18. ;*******************************************************************************
  19. ; THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  20. ; WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
  21. ; AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
  22. ; INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
  23. ; CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
  24. ; INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  25. ;*******************************************************************************
  26. ; If you need to use external SRAM mounted on STM3210E-EVAL board as data memory,
  27. ; change the following define value to '1' (or choose ENABLE in Configuration Wizard window)
  28. ;// <o> External SRAM Configuration <0=> DISABLE <1=> ENABLE
  29. DATA_IN_ExtSRAM EQU 0
  30. ; Amount of memory (in bytes) allocated for Stack
  31. ; Tailor this value to your application needs
  32. ;// <h> Stack Configuration
  33. ;// <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
  34. ;// </h>
  35. Stack_Size EQU 0x00000400
  36. AREA STACK, NOINIT, READWRITE, ALIGN=3
  37. Stack_Mem SPACE Stack_Size
  38. __initial_sp
  39. ; If you need to use external SRAM mounted on STM3210E-EVAL board as data memory
  40. ; and internal SRAM for Stack, uncomment the following line and comment the line above
  41. ;__initial_sp EQU 0x20000000 + Stack_Size ; "Use MicroLIB" must be checked in
  42. ; the Project->Options->Target window
  43. ; Amount of memory (in bytes) allocated for Heap
  44. ; Tailor this value to your application needs
  45. ;// <h> Heap Configuration
  46. ;// <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
  47. ;// </h>
  48. Heap_Size EQU 0x00000400
  49. AREA HEAP, NOINIT, READWRITE, ALIGN=3
  50. __heap_base
  51. Heap_Mem SPACE Heap_Size
  52. __heap_limit
  53. THUMB
  54. PRESERVE8
  55. ; Import exceptions handlers
  56. IMPORT NMIException
  57. IMPORT HardFaultException
  58. IMPORT MemManageException
  59. IMPORT BusFaultException
  60. IMPORT UsageFaultException
  61. IMPORT SVCHandler
  62. IMPORT DebugMonitor
  63. IMPORT PendSVC
  64. IMPORT SysTickHandler
  65. IMPORT WWDG_IRQHandler
  66. IMPORT PVD_IRQHandler
  67. IMPORT TAMPER_IRQHandler
  68. IMPORT RTC_IRQHandler
  69. IMPORT FLASH_IRQHandler
  70. IMPORT RCC_IRQHandler
  71. IMPORT EXTI0_IRQHandler
  72. IMPORT EXTI1_IRQHandler
  73. IMPORT EXTI2_IRQHandler
  74. IMPORT EXTI3_IRQHandler
  75. IMPORT EXTI4_IRQHandler
  76. IMPORT DMA1_Channel1_IRQHandler
  77. IMPORT DMA1_Channel2_IRQHandler
  78. IMPORT DMA1_Channel3_IRQHandler
  79. IMPORT DMA1_Channel4_IRQHandler
  80. IMPORT DMA1_Channel5_IRQHandler
  81. IMPORT DMA1_Channel6_IRQHandler
  82. IMPORT DMA1_Channel7_IRQHandler
  83. IMPORT ADC1_2_IRQHandler
  84. IMPORT USB_HP_CAN_TX_IRQHandler
  85. IMPORT USB_LP_CAN_RX0_IRQHandler
  86. IMPORT CAN_RX1_IRQHandler
  87. IMPORT CAN_SCE_IRQHandler
  88. IMPORT EXTI9_5_IRQHandler
  89. IMPORT TIM1_BRK_IRQHandler
  90. IMPORT TIM1_UP_IRQHandler
  91. IMPORT TIM1_TRG_COM_IRQHandler
  92. IMPORT TIM1_CC_IRQHandler
  93. IMPORT TIM2_IRQHandler
  94. IMPORT TIM3_IRQHandler
  95. IMPORT TIM4_IRQHandler
  96. IMPORT I2C1_EV_IRQHandler
  97. IMPORT I2C1_ER_IRQHandler
  98. IMPORT I2C2_EV_IRQHandler
  99. IMPORT I2C2_ER_IRQHandler
  100. IMPORT SPI1_IRQHandler
  101. IMPORT SPI2_IRQHandler
  102. IMPORT USART1_IRQHandler
  103. IMPORT USART2_IRQHandler
  104. IMPORT USART3_IRQHandler
  105. IMPORT EXTI15_10_IRQHandler
  106. IMPORT RTCAlarm_IRQHandler
  107. IMPORT USBWakeUp_IRQHandler
  108. IMPORT TIM8_BRK_IRQHandler
  109. IMPORT TIM8_UP_IRQHandler
  110. IMPORT TIM8_TRG_COM_IRQHandler
  111. IMPORT TIM8_CC_IRQHandler
  112. IMPORT ADC3_IRQHandler
  113. IMPORT FSMC_IRQHandler
  114. IMPORT SDIO_IRQHandler
  115. IMPORT TIM5_IRQHandler
  116. IMPORT SPI3_IRQHandler
  117. IMPORT UART4_IRQHandler
  118. IMPORT UART5_IRQHandler
  119. IMPORT TIM6_IRQHandler
  120. IMPORT TIM7_IRQHandler
  121. IMPORT DMA2_Channel1_IRQHandler
  122. IMPORT DMA2_Channel2_IRQHandler
  123. IMPORT DMA2_Channel3_IRQHandler
  124. IMPORT DMA2_Channel4_5_IRQHandler
  125. ;*******************************************************************************
  126. ; Fill-up the Vector Table entries with the exceptions ISR address
  127. ;*******************************************************************************
  128. AREA RESET, DATA, READONLY
  129. EXPORT __Vectors
  130. __Vectors DCD __initial_sp ; Top of Stack
  131. DCD Reset_Handler
  132. DCD NMIException
  133. DCD HardFaultException
  134. DCD MemManageException
  135. DCD BusFaultException
  136. DCD UsageFaultException
  137. DCD 0 ; Reserved
  138. DCD 0 ; Reserved
  139. DCD 0 ; Reserved
  140. DCD 0 ; Reserved
  141. DCD SVCHandler
  142. DCD DebugMonitor
  143. DCD 0 ; Reserved
  144. DCD PendSVC
  145. DCD SysTickHandler
  146. DCD WWDG_IRQHandler
  147. DCD PVD_IRQHandler
  148. DCD TAMPER_IRQHandler
  149. DCD RTC_IRQHandler
  150. DCD FLASH_IRQHandler
  151. DCD RCC_IRQHandler
  152. DCD EXTI0_IRQHandler
  153. DCD EXTI1_IRQHandler
  154. DCD EXTI2_IRQHandler
  155. DCD EXTI3_IRQHandler
  156. DCD EXTI4_IRQHandler
  157. DCD DMA1_Channel1_IRQHandler
  158. DCD DMA1_Channel2_IRQHandler
  159. DCD DMA1_Channel3_IRQHandler
  160. DCD DMA1_Channel4_IRQHandler
  161. DCD DMA1_Channel5_IRQHandler
  162. DCD DMA1_Channel6_IRQHandler
  163. DCD DMA1_Channel7_IRQHandler
  164. DCD ADC1_2_IRQHandler
  165. DCD USB_HP_CAN_TX_IRQHandler
  166. DCD USB_LP_CAN_RX0_IRQHandler
  167. DCD CAN_RX1_IRQHandler
  168. DCD CAN_SCE_IRQHandler
  169. DCD EXTI9_5_IRQHandler
  170. DCD TIM1_BRK_IRQHandler
  171. DCD TIM1_UP_IRQHandler
  172. DCD TIM1_TRG_COM_IRQHandler
  173. DCD TIM1_CC_IRQHandler
  174. DCD TIM2_IRQHandler
  175. DCD TIM3_IRQHandler
  176. DCD TIM4_IRQHandler
  177. DCD I2C1_EV_IRQHandler
  178. DCD I2C1_ER_IRQHandler
  179. DCD I2C2_EV_IRQHandler
  180. DCD I2C2_ER_IRQHandler
  181. DCD SPI1_IRQHandler
  182. DCD SPI2_IRQHandler
  183. DCD USART1_IRQHandler
  184. DCD USART2_IRQHandler
  185. DCD USART3_IRQHandler
  186. DCD EXTI15_10_IRQHandler
  187. DCD RTCAlarm_IRQHandler
  188. DCD USBWakeUp_IRQHandler
  189. DCD TIM8_BRK_IRQHandler
  190. DCD TIM8_UP_IRQHandler
  191. DCD TIM8_TRG_COM_IRQHandler
  192. DCD TIM8_CC_IRQHandler
  193. DCD ADC3_IRQHandler
  194. DCD FSMC_IRQHandler
  195. DCD SDIO_IRQHandler
  196. DCD TIM5_IRQHandler
  197. DCD SPI3_IRQHandler
  198. DCD UART4_IRQHandler
  199. DCD UART5_IRQHandler
  200. DCD TIM6_IRQHandler
  201. DCD TIM7_IRQHandler
  202. DCD DMA2_Channel1_IRQHandler
  203. DCD DMA2_Channel2_IRQHandler
  204. DCD DMA2_Channel3_IRQHandler
  205. DCD DMA2_Channel4_5_IRQHandler
  206. AREA |.text|, CODE, READONLY
  207. ; Reset handler routine
  208. Reset_Handler PROC
  209. EXPORT Reset_Handler
  210. IF DATA_IN_ExtSRAM == 1
  211. ; FSMC Bank1 NOR/SRAM3 is used for the STM3210E-EVAL, if another Bank is
  212. ; required, then adjust the Register Addresses
  213. ; Enable FSMC clock
  214. LDR R0,= 0x00000114
  215. LDR R1,= 0x40021014
  216. STR R0,[R1]
  217. ; Enable GPIOD, GPIOE, GPIOF and GPIOG clocks
  218. LDR R0,= 0x000001E0
  219. LDR R1,= 0x40021018
  220. STR R0,[R1]
  221. ; SRAM Data lines, NOE and NWE configuration
  222. ; SRAM Address lines configuration
  223. ; NOE and NWE configuration
  224. ; NE3 configuration
  225. ; NBL0, NBL1 configuration
  226. LDR R0,= 0x44BB44BB
  227. LDR R1,= 0x40011400
  228. STR R0,[R1]
  229. LDR R0,= 0xBBBBBBBB
  230. LDR R1,= 0x40011404
  231. STR R0,[R1]
  232. LDR R0,= 0xB44444BB
  233. LDR R1,= 0x40011800
  234. STR R0,[R1]
  235. LDR R0,= 0xBBBBBBBB
  236. LDR R1,= 0x40011804
  237. STR R0,[R1]
  238. LDR R0,= 0x44BBBBBB
  239. LDR R1,= 0x40011C00
  240. STR R0,[R1]
  241. LDR R0,= 0xBBBB4444
  242. LDR R1,= 0x40011C04
  243. STR R0,[R1]
  244. LDR R0,= 0x44BBBBBB
  245. LDR R1,= 0x40012000
  246. STR R0,[R1]
  247. LDR R0,= 0x44444B44
  248. LDR R1,= 0x40012004
  249. STR R0,[R1]
  250. ; FSMC Configuration
  251. ; Enable FSMC Bank1_SRAM Bank
  252. LDR R0,= 0x00001011
  253. LDR R1,= 0xA0000010
  254. STR R0,[R1]
  255. LDR R0,= 0x00000200
  256. LDR R1,= 0xA0000014
  257. STR R0,[R1]
  258. ENDIF
  259. IMPORT __main
  260. LDR R0, =__main
  261. BX R0
  262. ENDP
  263. ALIGN
  264. ;*******************************************************************************
  265. ; User Stack and Heap initialization
  266. ;*******************************************************************************
  267. IF :DEF:__MICROLIB
  268. EXPORT __initial_sp
  269. EXPORT __heap_base
  270. EXPORT __heap_limit
  271. ELSE
  272. IMPORT __use_two_region_memory
  273. EXPORT __user_initial_stackheap
  274. __user_initial_stackheap
  275. LDR R0, = Heap_Mem
  276. LDR R1, =(Stack_Mem + Stack_Size)
  277. LDR R2, = (Heap_Mem + Heap_Size)
  278. LDR R3, = Stack_Mem
  279. BX LR
  280. ALIGN
  281. ENDIF
  282. END
  283. ;******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE*****