ses_startup_nrf52810.s 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. /***********************************************************************************
  2. * SEGGER Microcontroller GmbH *
  3. * The Embedded Experts *
  4. ***********************************************************************************
  5. * *
  6. * (c) 2014 - 2018 SEGGER Microcontroller GmbH *
  7. * *
  8. * www.segger.com Support: support@segger.com *
  9. * *
  10. ***********************************************************************************
  11. * *
  12. * All rights reserved. *
  13. * *
  14. * Redistribution and use in source and binary forms, with or *
  15. * without modification, are permitted provided that the following *
  16. * conditions are met: *
  17. * *
  18. * - Redistributions of source code must retain the above copyright *
  19. * notice, this list of conditions and the following disclaimer. *
  20. * *
  21. * - Neither the name of SEGGER Microcontroller GmbH *
  22. * nor the names of its contributors may be used to endorse or *
  23. * promote products derived from this software without specific *
  24. * prior written permission. *
  25. * *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND *
  27. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, *
  28. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF *
  29. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE *
  30. * DISCLAIMED. *
  31. * IN NO EVENT SHALL SEGGER Microcontroller GmbH BE LIABLE FOR *
  32. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR *
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT *
  34. * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; *
  35. * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
  36. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT *
  37. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE *
  38. * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH *
  39. * DAMAGE. *
  40. * *
  41. ***********************************************************************************/
  42. /************************************************************************************
  43. * Preprocessor Definitions *
  44. * ------------------------ *
  45. * VECTORS_IN_RAM *
  46. * *
  47. * If defined, an area of RAM will large enough to store the vector table *
  48. * will be reserved. *
  49. * *
  50. ************************************************************************************/
  51. .syntax unified
  52. .code 16
  53. .section .init, "ax"
  54. .align 0
  55. /************************************************************************************
  56. * Default Exception Handlers *
  57. ************************************************************************************/
  58. .thumb_func
  59. .weak NMI_Handler
  60. NMI_Handler:
  61. b .
  62. .thumb_func
  63. .weak HardFault_Handler
  64. HardFault_Handler:
  65. b .
  66. .thumb_func
  67. .weak MemoryManagement_Handler
  68. MemoryManagement_Handler:
  69. b .
  70. .thumb_func
  71. .weak BusFault_Handler
  72. BusFault_Handler:
  73. b .
  74. .thumb_func
  75. .weak UsageFault_Handler
  76. UsageFault_Handler:
  77. b .
  78. .thumb_func
  79. .weak SVC_Handler
  80. SVC_Handler:
  81. b .
  82. .thumb_func
  83. .weak DebugMon_Handler
  84. DebugMon_Handler:
  85. b .
  86. .thumb_func
  87. .weak PendSV_Handler
  88. PendSV_Handler:
  89. b .
  90. .thumb_func
  91. .weak SysTick_Handler
  92. SysTick_Handler:
  93. b .
  94. .thumb_func
  95. .weak Dummy_Handler
  96. Dummy_Handler:
  97. b .
  98. /************************************************************************************
  99. * Default Interrupt Handlers *
  100. ************************************************************************************/
  101. .weak POWER_CLOCK_IRQHandler
  102. .thumb_set POWER_CLOCK_IRQHandler, Dummy_Handler
  103. .weak RADIO_IRQHandler
  104. .thumb_set RADIO_IRQHandler, Dummy_Handler
  105. .weak UARTE0_IRQHandler
  106. .thumb_set UARTE0_IRQHandler, Dummy_Handler
  107. .weak TWIM0_TWIS0_IRQHandler
  108. .thumb_set TWIM0_TWIS0_IRQHandler, Dummy_Handler
  109. .weak SPIM0_SPIS0_IRQHandler
  110. .thumb_set SPIM0_SPIS0_IRQHandler, Dummy_Handler
  111. .weak GPIOTE_IRQHandler
  112. .thumb_set GPIOTE_IRQHandler, Dummy_Handler
  113. .weak SAADC_IRQHandler
  114. .thumb_set SAADC_IRQHandler, Dummy_Handler
  115. .weak TIMER0_IRQHandler
  116. .thumb_set TIMER0_IRQHandler, Dummy_Handler
  117. .weak TIMER1_IRQHandler
  118. .thumb_set TIMER1_IRQHandler, Dummy_Handler
  119. .weak TIMER2_IRQHandler
  120. .thumb_set TIMER2_IRQHandler, Dummy_Handler
  121. .weak RTC0_IRQHandler
  122. .thumb_set RTC0_IRQHandler, Dummy_Handler
  123. .weak TEMP_IRQHandler
  124. .thumb_set TEMP_IRQHandler, Dummy_Handler
  125. .weak RNG_IRQHandler
  126. .thumb_set RNG_IRQHandler, Dummy_Handler
  127. .weak ECB_IRQHandler
  128. .thumb_set ECB_IRQHandler, Dummy_Handler
  129. .weak CCM_AAR_IRQHandler
  130. .thumb_set CCM_AAR_IRQHandler, Dummy_Handler
  131. .weak WDT_IRQHandler
  132. .thumb_set WDT_IRQHandler, Dummy_Handler
  133. .weak RTC1_IRQHandler
  134. .thumb_set RTC1_IRQHandler, Dummy_Handler
  135. .weak QDEC_IRQHandler
  136. .thumb_set QDEC_IRQHandler, Dummy_Handler
  137. .weak COMP_IRQHandler
  138. .thumb_set COMP_IRQHandler, Dummy_Handler
  139. .weak SWI0_EGU0_IRQHandler
  140. .thumb_set SWI0_EGU0_IRQHandler, Dummy_Handler
  141. .weak SWI1_EGU1_IRQHandler
  142. .thumb_set SWI1_EGU1_IRQHandler, Dummy_Handler
  143. .weak SWI2_IRQHandler
  144. .thumb_set SWI2_IRQHandler, Dummy_Handler
  145. .weak SWI3_IRQHandler
  146. .thumb_set SWI3_IRQHandler, Dummy_Handler
  147. .weak SWI4_IRQHandler
  148. .thumb_set SWI4_IRQHandler, Dummy_Handler
  149. .weak SWI5_IRQHandler
  150. .thumb_set SWI5_IRQHandler, Dummy_Handler
  151. .weak PWM0_IRQHandler
  152. .thumb_set PWM0_IRQHandler, Dummy_Handler
  153. .weak PDM_IRQHandler
  154. .thumb_set PDM_IRQHandler, Dummy_Handler
  155. /************************************************************************************
  156. * Reset Handler Extensions *
  157. ************************************************************************************/
  158. .extern Reset_Handler
  159. .global nRFInitialize
  160. .thumb_func
  161. nRFInitialize:
  162. bx lr
  163. /************************************************************************************
  164. * Vector Table *
  165. ************************************************************************************/
  166. .section .vectors, "ax"
  167. .align 0
  168. .global _vectors
  169. .extern __stack_end__
  170. _vectors:
  171. .word __stack_end__
  172. .word Reset_Handler
  173. .word NMI_Handler
  174. .word HardFault_Handler
  175. .word MemoryManagement_Handler
  176. .word BusFault_Handler
  177. .word UsageFault_Handler
  178. .word 0 /*Reserved */
  179. .word 0 /*Reserved */
  180. .word 0 /*Reserved */
  181. .word 0 /*Reserved */
  182. .word SVC_Handler
  183. .word DebugMon_Handler
  184. .word 0 /*Reserved */
  185. .word PendSV_Handler
  186. .word SysTick_Handler
  187. /* External Interrupts */
  188. .word POWER_CLOCK_IRQHandler
  189. .word RADIO_IRQHandler
  190. .word UARTE0_IRQHandler
  191. .word TWIM0_TWIS0_IRQHandler
  192. .word SPIM0_SPIS0_IRQHandler
  193. .word 0 /*Reserved */
  194. .word GPIOTE_IRQHandler
  195. .word SAADC_IRQHandler
  196. .word TIMER0_IRQHandler
  197. .word TIMER1_IRQHandler
  198. .word TIMER2_IRQHandler
  199. .word RTC0_IRQHandler
  200. .word TEMP_IRQHandler
  201. .word RNG_IRQHandler
  202. .word ECB_IRQHandler
  203. .word CCM_AAR_IRQHandler
  204. .word WDT_IRQHandler
  205. .word RTC1_IRQHandler
  206. .word QDEC_IRQHandler
  207. .word COMP_IRQHandler
  208. .word SWI0_EGU0_IRQHandler
  209. .word SWI1_EGU1_IRQHandler
  210. .word SWI2_IRQHandler
  211. .word SWI3_IRQHandler
  212. .word SWI4_IRQHandler
  213. .word SWI5_IRQHandler
  214. .word 0 /*Reserved */
  215. .word 0 /*Reserved */
  216. .word PWM0_IRQHandler
  217. .word PDM_IRQHandler
  218. .word 0 /*Reserved */
  219. .word 0 /*Reserved */
  220. .word 0 /*Reserved */
  221. .word 0 /*Reserved */
  222. .word 0 /*Reserved */
  223. .word 0 /*Reserved */
  224. .word 0 /*Reserved */
  225. .word 0 /*Reserved */
  226. .word 0 /*Reserved */
  227. .word 0 /*Reserved */
  228. .word 0 /*Reserved */
  229. .word 0 /*Reserved */
  230. .word 0 /*Reserved */
  231. .word 0 /*Reserved */
  232. .word 0 /*Reserved */
  233. .word 0 /*Reserved */
  234. .word 0 /*Reserved */
  235. .word 0 /*Reserved */
  236. .word 0 /*Reserved */
  237. .word 0 /*Reserved */
  238. .word 0 /*Reserved */
  239. .word 0 /*Reserved */
  240. .word 0 /*Reserved */
  241. .word 0 /*Reserved */
  242. .word 0 /*Reserved */
  243. .word 0 /*Reserved */
  244. .word 0 /*Reserved */
  245. .word 0 /*Reserved */
  246. .word 0 /*Reserved */
  247. .word 0 /*Reserved */
  248. .word 0 /*Reserved */
  249. .word 0 /*Reserved */
  250. .word 0 /*Reserved */
  251. .word 0 /*Reserved */
  252. .word 0 /*Reserved */
  253. .word 0 /*Reserved */
  254. .word 0 /*Reserved */
  255. .word 0 /*Reserved */
  256. .word 0 /*Reserved */
  257. .word 0 /*Reserved */
  258. .word 0 /*Reserved */
  259. .word 0 /*Reserved */
  260. .word 0 /*Reserved */
  261. .word 0 /*Reserved */
  262. .word 0 /*Reserved */
  263. .word 0 /*Reserved */
  264. .word 0 /*Reserved */
  265. .word 0 /*Reserved */
  266. .word 0 /*Reserved */
  267. .word 0 /*Reserved */
  268. .word 0 /*Reserved */
  269. .word 0 /*Reserved */
  270. .word 0 /*Reserved */
  271. .word 0 /*Reserved */
  272. .word 0 /*Reserved */
  273. .word 0 /*Reserved */
  274. .word 0 /*Reserved */
  275. .word 0 /*Reserved */
  276. .word 0 /*Reserved */
  277. .word 0 /*Reserved */
  278. .word 0 /*Reserved */
  279. .word 0 /*Reserved */
  280. .word 0 /*Reserved */
  281. .word 0 /*Reserved */
  282. .word 0 /*Reserved */
  283. .word 0 /*Reserved */
  284. .word 0 /*Reserved */
  285. .word 0 /*Reserved */
  286. .word 0 /*Reserved */
  287. .word 0 /*Reserved */
  288. .word 0 /*Reserved */
  289. .word 0 /*Reserved */
  290. .word 0 /*Reserved */
  291. .word 0 /*Reserved */
  292. .word 0 /*Reserved */
  293. .word 0 /*Reserved */
  294. .word 0 /*Reserved */
  295. .word 0 /*Reserved */
  296. .word 0 /*Reserved */
  297. .word 0 /*Reserved */
  298. .word 0 /*Reserved */
  299. .word 0 /*Reserved */
  300. _vectors_end:
  301. #ifdef VECTORS_IN_RAM
  302. .section .vectors_ram, "ax"
  303. .align 0
  304. .global _vectors_ram
  305. _vectors_ram:
  306. .space _vectors_end - _vectors, 0
  307. #endif