iar_startup_nrf52811.s 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. ; Copyright (c) 2009-2020 ARM Limited. All rights reserved.
  2. ;
  3. ; SPDX-License-Identifier: Apache-2.0
  4. ;
  5. ; Licensed under the Apache License, Version 2.0 (the License); you may
  6. ; not use this file except in compliance with the License.
  7. ; You may obtain a copy of the License at
  8. ;
  9. ; www.apache.org/licenses/LICENSE-2.0
  10. ;
  11. ; Unless required by applicable law or agreed to in writing, software
  12. ; distributed under the License is distributed on an AS IS BASIS, WITHOUT
  13. ; WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ; See the License for the specific language governing permissions and
  15. ; limitations under the License.
  16. ;
  17. ; NOTICE: This file has been modified by Nordic Semiconductor ASA.
  18. ; The modules in this file are included in the libraries, and may be replaced
  19. ; by any user-defined modules that define the PUBLIC symbol _program_start or
  20. ; a user defined start symbol.
  21. ; To override the cstartup defined in the library, simply add your modified
  22. ; version to the workbench project.
  23. ;
  24. ; The vector table is normally located at address 0.
  25. ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
  26. ; The name "__vector_table" has special meaning for C-SPY:
  27. ; it is where the SP start value is found, and the NVIC vector
  28. ; table register (VTOR) is initialized to this address if != 0.
  29. MODULE ?cstartup
  30. #if defined(__STARTUP_CONFIG)
  31. #include "startup_config.h"
  32. #ifndef __STARTUP_CONFIG_STACK_ALIGNEMENT
  33. #define __STARTUP_CONFIG_STACK_ALIGNEMENT 3
  34. #endif
  35. SECTION CSTACK:DATA:NOROOT(__STARTUP_CONFIG_STACK_ALIGNEMENT)
  36. DS8 __STARTUP_CONFIG_STACK_SIZE
  37. SECTION HEAP:DATA:NOROOT(3)
  38. DS8 __STARTUP_CONFIG_HEAP_SIZE
  39. #else
  40. ;; Stack size default : Defined in *.icf (linker file). Can be modified inside EW.
  41. ;; Heap size default : Defined in *.icf (linker file). Can be modified inside EW.
  42. ;; Forward declaration of sections.
  43. SECTION CSTACK:DATA:NOROOT(3)
  44. #endif
  45. SECTION .intvec:CODE:NOROOT(2)
  46. EXTERN __iar_program_start
  47. EXTERN SystemInit
  48. PUBLIC __vector_table
  49. PUBLIC __Vectors
  50. PUBLIC __Vectors_End
  51. PUBLIC __Vectors_Size
  52. DATA
  53. __vector_table
  54. DCD sfe(CSTACK)
  55. DCD Reset_Handler
  56. DCD NMI_Handler
  57. DCD HardFault_Handler
  58. DCD MemoryManagement_Handler
  59. DCD BusFault_Handler
  60. DCD UsageFault_Handler
  61. DCD 0 ; Reserved
  62. DCD 0 ; Reserved
  63. DCD 0 ; Reserved
  64. DCD 0 ; Reserved
  65. DCD SVC_Handler
  66. DCD DebugMon_Handler
  67. DCD 0 ; Reserved
  68. DCD PendSV_Handler
  69. DCD SysTick_Handler
  70. ; External Interrupts
  71. DCD POWER_CLOCK_IRQHandler
  72. DCD RADIO_IRQHandler
  73. DCD UARTE0_UART0_IRQHandler
  74. DCD TWIM0_TWIS0_TWI0_SPIM1_SPIS1_SPI1_IRQHandler
  75. DCD SPIM0_SPIS0_SPI0_IRQHandler
  76. DCD 0 ; Reserved
  77. DCD GPIOTE_IRQHandler
  78. DCD SAADC_IRQHandler
  79. DCD TIMER0_IRQHandler
  80. DCD TIMER1_IRQHandler
  81. DCD TIMER2_IRQHandler
  82. DCD RTC0_IRQHandler
  83. DCD TEMP_IRQHandler
  84. DCD RNG_IRQHandler
  85. DCD ECB_IRQHandler
  86. DCD CCM_AAR_IRQHandler
  87. DCD WDT_IRQHandler
  88. DCD RTC1_IRQHandler
  89. DCD QDEC_IRQHandler
  90. DCD COMP_IRQHandler
  91. DCD SWI0_EGU0_IRQHandler
  92. DCD SWI1_EGU1_IRQHandler
  93. DCD SWI2_IRQHandler
  94. DCD SWI3_IRQHandler
  95. DCD SWI4_IRQHandler
  96. DCD SWI5_IRQHandler
  97. DCD 0 ; Reserved
  98. DCD 0 ; Reserved
  99. DCD PWM0_IRQHandler
  100. DCD PDM_IRQHandler
  101. DCD 0 ; Reserved
  102. DCD 0 ; Reserved
  103. DCD 0 ; Reserved
  104. DCD 0 ; Reserved
  105. DCD 0 ; Reserved
  106. DCD 0 ; Reserved
  107. DCD 0 ; Reserved
  108. DCD 0 ; Reserved
  109. DCD 0 ; Reserved
  110. DCD 0 ; Reserved
  111. DCD 0 ; Reserved
  112. DCD 0 ; Reserved
  113. DCD 0 ; Reserved
  114. DCD 0 ; Reserved
  115. DCD 0 ; Reserved
  116. DCD 0 ; Reserved
  117. DCD 0 ; Reserved
  118. DCD 0 ; Reserved
  119. DCD 0 ; Reserved
  120. DCD 0 ; Reserved
  121. DCD 0 ; Reserved
  122. DCD 0 ; Reserved
  123. DCD 0 ; Reserved
  124. DCD 0 ; Reserved
  125. DCD 0 ; Reserved
  126. DCD 0 ; Reserved
  127. DCD 0 ; Reserved
  128. DCD 0 ; Reserved
  129. DCD 0 ; Reserved
  130. DCD 0 ; Reserved
  131. DCD 0 ; Reserved
  132. DCD 0 ; Reserved
  133. DCD 0 ; Reserved
  134. DCD 0 ; Reserved
  135. DCD 0 ; Reserved
  136. DCD 0 ; Reserved
  137. DCD 0 ; Reserved
  138. DCD 0 ; Reserved
  139. DCD 0 ; Reserved
  140. DCD 0 ; Reserved
  141. DCD 0 ; Reserved
  142. DCD 0 ; Reserved
  143. DCD 0 ; Reserved
  144. DCD 0 ; Reserved
  145. DCD 0 ; Reserved
  146. DCD 0 ; Reserved
  147. DCD 0 ; Reserved
  148. DCD 0 ; Reserved
  149. DCD 0 ; Reserved
  150. DCD 0 ; Reserved
  151. DCD 0 ; Reserved
  152. DCD 0 ; Reserved
  153. DCD 0 ; Reserved
  154. DCD 0 ; Reserved
  155. DCD 0 ; Reserved
  156. DCD 0 ; Reserved
  157. DCD 0 ; Reserved
  158. DCD 0 ; Reserved
  159. DCD 0 ; Reserved
  160. DCD 0 ; Reserved
  161. DCD 0 ; Reserved
  162. DCD 0 ; Reserved
  163. DCD 0 ; Reserved
  164. DCD 0 ; Reserved
  165. DCD 0 ; Reserved
  166. DCD 0 ; Reserved
  167. DCD 0 ; Reserved
  168. DCD 0 ; Reserved
  169. DCD 0 ; Reserved
  170. DCD 0 ; Reserved
  171. DCD 0 ; Reserved
  172. DCD 0 ; Reserved
  173. DCD 0 ; Reserved
  174. DCD 0 ; Reserved
  175. DCD 0 ; Reserved
  176. DCD 0 ; Reserved
  177. DCD 0 ; Reserved
  178. DCD 0 ; Reserved
  179. DCD 0 ; Reserved
  180. DCD 0 ; Reserved
  181. DCD 0 ; Reserved
  182. DCD 0 ; Reserved
  183. __Vectors_End
  184. __Vectors EQU __vector_table
  185. __Vectors_Size EQU __Vectors_End - __Vectors
  186. ; Default handlers.
  187. THUMB
  188. PUBWEAK Reset_Handler
  189. SECTION .text:CODE:REORDER:NOROOT(2)
  190. Reset_Handler
  191. LDR R0, =SystemInit
  192. BLX R0
  193. LDR R0, =__iar_program_start
  194. BX R0
  195. ; Dummy exception handlers
  196. PUBWEAK NMI_Handler
  197. SECTION .text:CODE:REORDER:NOROOT(1)
  198. NMI_Handler
  199. B .
  200. PUBWEAK HardFault_Handler
  201. SECTION .text:CODE:REORDER:NOROOT(1)
  202. HardFault_Handler
  203. B .
  204. PUBWEAK MemoryManagement_Handler
  205. SECTION .text:CODE:REORDER:NOROOT(1)
  206. MemoryManagement_Handler
  207. B .
  208. PUBWEAK BusFault_Handler
  209. SECTION .text:CODE:REORDER:NOROOT(1)
  210. BusFault_Handler
  211. B .
  212. PUBWEAK UsageFault_Handler
  213. SECTION .text:CODE:REORDER:NOROOT(1)
  214. UsageFault_Handler
  215. B .
  216. PUBWEAK SVC_Handler
  217. SECTION .text:CODE:REORDER:NOROOT(1)
  218. SVC_Handler
  219. B .
  220. PUBWEAK DebugMon_Handler
  221. SECTION .text:CODE:REORDER:NOROOT(1)
  222. DebugMon_Handler
  223. B .
  224. PUBWEAK PendSV_Handler
  225. SECTION .text:CODE:REORDER:NOROOT(1)
  226. PendSV_Handler
  227. B .
  228. PUBWEAK SysTick_Handler
  229. SECTION .text:CODE:REORDER:NOROOT(1)
  230. SysTick_Handler
  231. B .
  232. ; Dummy interrupt handlers
  233. PUBWEAK POWER_CLOCK_IRQHandler
  234. SECTION .text:CODE:REORDER:NOROOT(1)
  235. POWER_CLOCK_IRQHandler
  236. B .
  237. PUBWEAK RADIO_IRQHandler
  238. SECTION .text:CODE:REORDER:NOROOT(1)
  239. RADIO_IRQHandler
  240. B .
  241. PUBWEAK UARTE0_UART0_IRQHandler
  242. SECTION .text:CODE:REORDER:NOROOT(1)
  243. UARTE0_UART0_IRQHandler
  244. B .
  245. PUBWEAK TWIM0_TWIS0_TWI0_SPIM1_SPIS1_SPI1_IRQHandler
  246. SECTION .text:CODE:REORDER:NOROOT(1)
  247. TWIM0_TWIS0_TWI0_SPIM1_SPIS1_SPI1_IRQHandler
  248. B .
  249. PUBWEAK SPIM0_SPIS0_SPI0_IRQHandler
  250. SECTION .text:CODE:REORDER:NOROOT(1)
  251. SPIM0_SPIS0_SPI0_IRQHandler
  252. B .
  253. PUBWEAK GPIOTE_IRQHandler
  254. SECTION .text:CODE:REORDER:NOROOT(1)
  255. GPIOTE_IRQHandler
  256. B .
  257. PUBWEAK SAADC_IRQHandler
  258. SECTION .text:CODE:REORDER:NOROOT(1)
  259. SAADC_IRQHandler
  260. B .
  261. PUBWEAK TIMER0_IRQHandler
  262. SECTION .text:CODE:REORDER:NOROOT(1)
  263. TIMER0_IRQHandler
  264. B .
  265. PUBWEAK TIMER1_IRQHandler
  266. SECTION .text:CODE:REORDER:NOROOT(1)
  267. TIMER1_IRQHandler
  268. B .
  269. PUBWEAK TIMER2_IRQHandler
  270. SECTION .text:CODE:REORDER:NOROOT(1)
  271. TIMER2_IRQHandler
  272. B .
  273. PUBWEAK RTC0_IRQHandler
  274. SECTION .text:CODE:REORDER:NOROOT(1)
  275. RTC0_IRQHandler
  276. B .
  277. PUBWEAK TEMP_IRQHandler
  278. SECTION .text:CODE:REORDER:NOROOT(1)
  279. TEMP_IRQHandler
  280. B .
  281. PUBWEAK RNG_IRQHandler
  282. SECTION .text:CODE:REORDER:NOROOT(1)
  283. RNG_IRQHandler
  284. B .
  285. PUBWEAK ECB_IRQHandler
  286. SECTION .text:CODE:REORDER:NOROOT(1)
  287. ECB_IRQHandler
  288. B .
  289. PUBWEAK CCM_AAR_IRQHandler
  290. SECTION .text:CODE:REORDER:NOROOT(1)
  291. CCM_AAR_IRQHandler
  292. B .
  293. PUBWEAK WDT_IRQHandler
  294. SECTION .text:CODE:REORDER:NOROOT(1)
  295. WDT_IRQHandler
  296. B .
  297. PUBWEAK RTC1_IRQHandler
  298. SECTION .text:CODE:REORDER:NOROOT(1)
  299. RTC1_IRQHandler
  300. B .
  301. PUBWEAK QDEC_IRQHandler
  302. SECTION .text:CODE:REORDER:NOROOT(1)
  303. QDEC_IRQHandler
  304. B .
  305. PUBWEAK COMP_IRQHandler
  306. SECTION .text:CODE:REORDER:NOROOT(1)
  307. COMP_IRQHandler
  308. B .
  309. PUBWEAK SWI0_EGU0_IRQHandler
  310. SECTION .text:CODE:REORDER:NOROOT(1)
  311. SWI0_EGU0_IRQHandler
  312. B .
  313. PUBWEAK SWI1_EGU1_IRQHandler
  314. SECTION .text:CODE:REORDER:NOROOT(1)
  315. SWI1_EGU1_IRQHandler
  316. B .
  317. PUBWEAK SWI2_IRQHandler
  318. SECTION .text:CODE:REORDER:NOROOT(1)
  319. SWI2_IRQHandler
  320. B .
  321. PUBWEAK SWI3_IRQHandler
  322. SECTION .text:CODE:REORDER:NOROOT(1)
  323. SWI3_IRQHandler
  324. B .
  325. PUBWEAK SWI4_IRQHandler
  326. SECTION .text:CODE:REORDER:NOROOT(1)
  327. SWI4_IRQHandler
  328. B .
  329. PUBWEAK SWI5_IRQHandler
  330. SECTION .text:CODE:REORDER:NOROOT(1)
  331. SWI5_IRQHandler
  332. B .
  333. PUBWEAK PWM0_IRQHandler
  334. SECTION .text:CODE:REORDER:NOROOT(1)
  335. PWM0_IRQHandler
  336. B .
  337. PUBWEAK PDM_IRQHandler
  338. SECTION .text:CODE:REORDER:NOROOT(1)
  339. PDM_IRQHandler
  340. B .
  341. END