Teensy 4.1 core updated for C++20
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mk20dx128.c 52KB

11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
7 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
11 vuotta sitten
9 vuotta sitten
11 vuotta sitten
10 vuotta sitten
11 vuotta sitten
6 vuotta sitten
11 vuotta sitten
6 vuotta sitten
6 vuotta sitten
9 vuotta sitten
10 vuotta sitten
6 vuotta sitten
11 vuotta sitten
11 vuotta sitten
10 vuotta sitten
10 vuotta sitten
10 vuotta sitten
11 vuotta sitten
6 vuotta sitten
11 vuotta sitten
8 vuotta sitten
8 vuotta sitten
6 vuotta sitten
8 vuotta sitten
8 vuotta sitten
6 vuotta sitten
8 vuotta sitten
8 vuotta sitten
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2017 PJRC.COM, LLC.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * 1. The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * 2. If the Software is incorporated into a build system that allows
  17. * selection among a list of target devices, then similar target
  18. * devices manufactured by PJRC.COM must be included in the list of
  19. * target devices and selectable in the same manner.
  20. *
  21. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  22. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  23. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  25. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  26. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  28. * SOFTWARE.
  29. */
  30. #include "kinetis.h"
  31. #include "core_pins.h" // testing only
  32. #include "ser_print.h" // testing only
  33. #include <errno.h>
  34. // Flash Security Setting. On Teensy 3.2, you can lock the MK20 chip to prevent
  35. // anyone from reading your code. You CAN still reprogram your Teensy while
  36. // security is set, but the bootloader will be unable to respond to auto-reboot
  37. // requests from Arduino. Pressing the program button will cause a full chip
  38. // erase to gain access, because the bootloader chip is locked out. Normally,
  39. // erase occurs when uploading begins, so if you press the Program button
  40. // accidentally, simply power cycling will run your program again. When
  41. // security is locked, any Program button press causes immediate full erase.
  42. // Special care must be used with the Program button, because it must be made
  43. // accessible to initiate reprogramming, but it must not be accidentally
  44. // pressed when Teensy Loader is not being used to reprogram. To set lock the
  45. // security change this to 0xDC. Teensy 3.0 and 3.1 do not support security lock.
  46. #define FSEC 0xDE
  47. // Flash Options
  48. #define FOPT 0xF9
  49. extern unsigned long _stext;
  50. extern unsigned long _etext;
  51. extern unsigned long _sdata;
  52. extern unsigned long _edata;
  53. extern unsigned long _sbss;
  54. extern unsigned long _ebss;
  55. extern unsigned long _estack;
  56. //extern void __init_array_start(void);
  57. //extern void __init_array_end(void);
  58. extern int main (void);
  59. void ResetHandler(void);
  60. void _init_Teensyduino_internal_(void) __attribute__((noinline));
  61. void __libc_init_array(void);
  62. void fault_isr(void)
  63. {
  64. #if 0
  65. uint32_t addr;
  66. SIM_SCGC4 |= 0x00000400;
  67. UART0_BDH = 0;
  68. UART0_BDL = 26; // 115200 at 48 MHz
  69. UART0_C2 = UART_C2_TE;
  70. PORTB_PCR17 = PORT_PCR_MUX(3);
  71. ser_print("\nfault: \n??: ");
  72. asm("ldr %0, [sp, #52]" : "=r" (addr) ::);
  73. ser_print_hex32(addr);
  74. ser_print("\n??: ");
  75. asm("ldr %0, [sp, #48]" : "=r" (addr) ::);
  76. ser_print_hex32(addr);
  77. ser_print("\n??: ");
  78. asm("ldr %0, [sp, #44]" : "=r" (addr) ::);
  79. ser_print_hex32(addr);
  80. ser_print("\npsr:");
  81. asm("ldr %0, [sp, #40]" : "=r" (addr) ::);
  82. ser_print_hex32(addr);
  83. ser_print("\nadr:");
  84. asm("ldr %0, [sp, #36]" : "=r" (addr) ::);
  85. ser_print_hex32(addr);
  86. ser_print("\nlr: ");
  87. asm("ldr %0, [sp, #32]" : "=r" (addr) ::);
  88. ser_print_hex32(addr);
  89. ser_print("\nr12:");
  90. asm("ldr %0, [sp, #28]" : "=r" (addr) ::);
  91. ser_print_hex32(addr);
  92. ser_print("\nr3: ");
  93. asm("ldr %0, [sp, #24]" : "=r" (addr) ::);
  94. ser_print_hex32(addr);
  95. ser_print("\nr2: ");
  96. asm("ldr %0, [sp, #20]" : "=r" (addr) ::);
  97. ser_print_hex32(addr);
  98. ser_print("\nr1: ");
  99. asm("ldr %0, [sp, #16]" : "=r" (addr) ::);
  100. ser_print_hex32(addr);
  101. ser_print("\nr0: ");
  102. asm("ldr %0, [sp, #12]" : "=r" (addr) ::);
  103. ser_print_hex32(addr);
  104. ser_print("\nr4: ");
  105. asm("ldr %0, [sp, #8]" : "=r" (addr) ::);
  106. ser_print_hex32(addr);
  107. ser_print("\nlr: ");
  108. asm("ldr %0, [sp, #4]" : "=r" (addr) ::);
  109. ser_print_hex32(addr);
  110. ser_print("\n");
  111. asm("ldr %0, [sp, #0]" : "=r" (addr) ::);
  112. #endif
  113. while (1) {
  114. // keep polling some communication while in fault
  115. // mode, so we don't completely die.
  116. if (SIM_SCGC4 & SIM_SCGC4_USBOTG) usb_isr();
  117. if (SIM_SCGC4 & SIM_SCGC4_UART0) uart0_status_isr();
  118. if (SIM_SCGC4 & SIM_SCGC4_UART1) uart1_status_isr();
  119. if (SIM_SCGC4 & SIM_SCGC4_UART2) uart2_status_isr();
  120. }
  121. }
  122. void unused_isr(void)
  123. {
  124. fault_isr();
  125. }
  126. void nmi_isr(void) __attribute__ ((weak, alias("unused_isr")));
  127. void hard_fault_isr(void) __attribute__ ((weak, alias("fault_isr")));
  128. void memmanage_fault_isr(void) __attribute__ ((weak, alias("fault_isr")));
  129. void bus_fault_isr(void) __attribute__ ((weak, alias("fault_isr")));
  130. void usage_fault_isr(void) __attribute__ ((weak, alias("fault_isr")));
  131. void svcall_isr(void) __attribute__ ((weak, alias("unused_isr")));
  132. void debugmonitor_isr(void) __attribute__ ((weak, alias("unused_isr")));
  133. void pendablesrvreq_isr(void) __attribute__ ((weak, alias("unused_isr")));
  134. void systick_isr(void);
  135. void dma_ch0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  136. void dma_ch1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  137. void dma_ch2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  138. void dma_ch3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  139. void dma_ch4_isr(void) __attribute__ ((weak, alias("unused_isr")));
  140. void dma_ch5_isr(void) __attribute__ ((weak, alias("unused_isr")));
  141. void dma_ch6_isr(void) __attribute__ ((weak, alias("unused_isr")));
  142. void dma_ch7_isr(void) __attribute__ ((weak, alias("unused_isr")));
  143. void dma_ch8_isr(void) __attribute__ ((weak, alias("unused_isr")));
  144. void dma_ch9_isr(void) __attribute__ ((weak, alias("unused_isr")));
  145. void dma_ch10_isr(void) __attribute__ ((weak, alias("unused_isr")));
  146. void dma_ch11_isr(void) __attribute__ ((weak, alias("unused_isr")));
  147. void dma_ch12_isr(void) __attribute__ ((weak, alias("unused_isr")));
  148. void dma_ch13_isr(void) __attribute__ ((weak, alias("unused_isr")));
  149. void dma_ch14_isr(void) __attribute__ ((weak, alias("unused_isr")));
  150. void dma_ch15_isr(void) __attribute__ ((weak, alias("unused_isr")));
  151. void dma_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  152. void mcm_isr(void) __attribute__ ((weak, alias("unused_isr")));
  153. void randnum_isr(void) __attribute__ ((weak, alias("unused_isr")));
  154. void flash_cmd_isr(void) __attribute__ ((weak, alias("unused_isr")));
  155. void flash_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  156. void low_voltage_isr(void) __attribute__ ((weak, alias("unused_isr")));
  157. void wakeup_isr(void) __attribute__ ((weak, alias("unused_isr")));
  158. void watchdog_isr(void) __attribute__ ((weak, alias("unused_isr")));
  159. void i2c0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  160. void i2c1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  161. void i2c2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  162. void i2c3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  163. void spi0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  164. void spi1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  165. void spi2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  166. void sdhc_isr(void) __attribute__ ((weak, alias("unused_isr")));
  167. void enet_timer_isr(void) __attribute__ ((weak, alias("unused_isr")));
  168. void enet_tx_isr(void) __attribute__ ((weak, alias("unused_isr")));
  169. void enet_rx_isr(void) __attribute__ ((weak, alias("unused_isr")));
  170. void enet_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  171. void can0_message_isr(void) __attribute__ ((weak, alias("unused_isr")));
  172. void can0_bus_off_isr(void) __attribute__ ((weak, alias("unused_isr")));
  173. void can0_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  174. void can0_tx_warn_isr(void) __attribute__ ((weak, alias("unused_isr")));
  175. void can0_rx_warn_isr(void) __attribute__ ((weak, alias("unused_isr")));
  176. void can0_wakeup_isr(void) __attribute__ ((weak, alias("unused_isr")));
  177. void can1_message_isr(void) __attribute__ ((weak, alias("unused_isr")));
  178. void can1_bus_off_isr(void) __attribute__ ((weak, alias("unused_isr")));
  179. void can1_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  180. void can1_tx_warn_isr(void) __attribute__ ((weak, alias("unused_isr")));
  181. void can1_rx_warn_isr(void) __attribute__ ((weak, alias("unused_isr")));
  182. void can1_wakeup_isr(void) __attribute__ ((weak, alias("unused_isr")));
  183. void i2s0_tx_isr(void) __attribute__ ((weak, alias("unused_isr")));
  184. void i2s0_rx_isr(void) __attribute__ ((weak, alias("unused_isr")));
  185. void i2s0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  186. void uart0_lon_isr(void) __attribute__ ((weak, alias("unused_isr")));
  187. void uart0_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  188. void uart0_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  189. void uart1_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  190. void uart1_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  191. void uart2_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  192. void uart2_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  193. void uart3_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  194. void uart3_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  195. void uart4_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  196. void uart4_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  197. void uart5_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  198. void uart5_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  199. void lpuart0_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  200. void adc0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  201. void adc1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  202. void cmp0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  203. void cmp1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  204. void cmp2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  205. void cmp3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  206. void ftm0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  207. void ftm1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  208. void ftm2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  209. void ftm3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  210. void tpm0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  211. void tpm1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  212. void tpm2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  213. void cmt_isr(void) __attribute__ ((weak, alias("unused_isr")));
  214. void rtc_alarm_isr(void) __attribute__ ((weak, alias("unused_isr")));
  215. void rtc_seconds_isr(void) __attribute__ ((weak, alias("unused_isr")));
  216. void pit_isr(void) __attribute__ ((weak, alias("unused_isr")));
  217. void pit0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  218. void pit1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  219. void pit2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  220. void pit3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  221. void pdb_isr(void) __attribute__ ((weak, alias("unused_isr")));
  222. void usb_isr(void) __attribute__ ((weak, alias("unused_isr")));
  223. void usb_charge_isr(void) __attribute__ ((weak, alias("unused_isr")));
  224. void usbhs_isr(void) __attribute__ ((weak, alias("unused_isr")));
  225. void usbhs_phy_isr(void) __attribute__ ((weak, alias("unused_isr")));
  226. void dac0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  227. void dac1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  228. void tsi0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  229. void mcg_isr(void) __attribute__ ((weak, alias("unused_isr")));
  230. void lptmr_isr(void) __attribute__ ((weak, alias("unused_isr")));
  231. void porta_isr(void) __attribute__ ((weak, alias("unused_isr")));
  232. void portb_isr(void) __attribute__ ((weak, alias("unused_isr")));
  233. void portc_isr(void) __attribute__ ((weak, alias("unused_isr")));
  234. void portd_isr(void) __attribute__ ((weak, alias("unused_isr")));
  235. void porte_isr(void) __attribute__ ((weak, alias("unused_isr")));
  236. void portcd_isr(void) __attribute__ ((weak, alias("unused_isr")));
  237. void software_isr(void) __attribute__ ((weak, alias("unused_isr")));
  238. #if defined(__MK20DX128__)
  239. __attribute__ ((section(".dmabuffers"), used, aligned(256)))
  240. #elif defined(__MK20DX256__)
  241. __attribute__ ((section(".dmabuffers"), used, aligned(512)))
  242. #elif defined(__MKL26Z64__)
  243. __attribute__ ((section(".dmabuffers"), used, aligned(256)))
  244. #elif defined(__MK64FX512__)
  245. __attribute__ ((section(".dmabuffers"), used, aligned(512)))
  246. #elif defined(__MK66FX1M0__)
  247. __attribute__ ((section(".dmabuffers"), used, aligned(512)))
  248. #endif
  249. void (* _VectorsRam[NVIC_NUM_INTERRUPTS+16])(void);
  250. __attribute__ ((section(".vectors"), used))
  251. void (* const _VectorsFlash[NVIC_NUM_INTERRUPTS+16])(void) =
  252. {
  253. (void (*)(void))((unsigned long)&_estack), // 0 ARM: Initial Stack Pointer
  254. ResetHandler, // 1 ARM: Initial Program Counter
  255. nmi_isr, // 2 ARM: Non-maskable Interrupt (NMI)
  256. hard_fault_isr, // 3 ARM: Hard Fault
  257. memmanage_fault_isr, // 4 ARM: MemManage Fault
  258. bus_fault_isr, // 5 ARM: Bus Fault
  259. usage_fault_isr, // 6 ARM: Usage Fault
  260. fault_isr, // 7 --
  261. fault_isr, // 8 --
  262. fault_isr, // 9 --
  263. fault_isr, // 10 --
  264. svcall_isr, // 11 ARM: Supervisor call (SVCall)
  265. debugmonitor_isr, // 12 ARM: Debug Monitor
  266. fault_isr, // 13 --
  267. pendablesrvreq_isr, // 14 ARM: Pendable req serv(PendableSrvReq)
  268. systick_isr, // 15 ARM: System tick timer (SysTick)
  269. #if defined(__MK20DX128__)
  270. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  271. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  272. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  273. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  274. dma_error_isr, // 20 DMA error interrupt channel
  275. unused_isr, // 21 DMA --
  276. flash_cmd_isr, // 22 Flash Memory Command complete
  277. flash_error_isr, // 23 Flash Read collision
  278. low_voltage_isr, // 24 Low-voltage detect/warning
  279. wakeup_isr, // 25 Low Leakage Wakeup
  280. watchdog_isr, // 26 Both EWM and WDOG interrupt
  281. i2c0_isr, // 27 I2C0
  282. spi0_isr, // 28 SPI0
  283. i2s0_tx_isr, // 29 I2S0 Transmit
  284. i2s0_rx_isr, // 30 I2S0 Receive
  285. uart0_lon_isr, // 31 UART0 CEA709.1-B (LON) status
  286. uart0_status_isr, // 32 UART0 status
  287. uart0_error_isr, // 33 UART0 error
  288. uart1_status_isr, // 34 UART1 status
  289. uart1_error_isr, // 35 UART1 error
  290. uart2_status_isr, // 36 UART2 status
  291. uart2_error_isr, // 37 UART2 error
  292. adc0_isr, // 38 ADC0
  293. cmp0_isr, // 39 CMP0
  294. cmp1_isr, // 40 CMP1
  295. ftm0_isr, // 41 FTM0
  296. ftm1_isr, // 42 FTM1
  297. cmt_isr, // 43 CMT
  298. rtc_alarm_isr, // 44 RTC Alarm interrupt
  299. rtc_seconds_isr, // 45 RTC Seconds interrupt
  300. pit0_isr, // 46 PIT Channel 0
  301. pit1_isr, // 47 PIT Channel 1
  302. pit2_isr, // 48 PIT Channel 2
  303. pit3_isr, // 49 PIT Channel 3
  304. pdb_isr, // 50 PDB Programmable Delay Block
  305. usb_isr, // 51 USB OTG
  306. usb_charge_isr, // 52 USB Charger Detect
  307. tsi0_isr, // 53 TSI0
  308. mcg_isr, // 54 MCG
  309. lptmr_isr, // 55 Low Power Timer
  310. porta_isr, // 56 Pin detect (Port A)
  311. portb_isr, // 57 Pin detect (Port B)
  312. portc_isr, // 58 Pin detect (Port C)
  313. portd_isr, // 59 Pin detect (Port D)
  314. porte_isr, // 60 Pin detect (Port E)
  315. software_isr, // 61 Software interrupt
  316. #elif defined(__MK20DX256__)
  317. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  318. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  319. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  320. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  321. dma_ch4_isr, // 20 DMA channel 4 transfer complete
  322. dma_ch5_isr, // 21 DMA channel 5 transfer complete
  323. dma_ch6_isr, // 22 DMA channel 6 transfer complete
  324. dma_ch7_isr, // 23 DMA channel 7 transfer complete
  325. dma_ch8_isr, // 24 DMA channel 8 transfer complete
  326. dma_ch9_isr, // 25 DMA channel 9 transfer complete
  327. dma_ch10_isr, // 26 DMA channel 10 transfer complete
  328. dma_ch11_isr, // 27 DMA channel 11 transfer complete
  329. dma_ch12_isr, // 28 DMA channel 12 transfer complete
  330. dma_ch13_isr, // 29 DMA channel 13 transfer complete
  331. dma_ch14_isr, // 30 DMA channel 14 transfer complete
  332. dma_ch15_isr, // 31 DMA channel 15 transfer complete
  333. dma_error_isr, // 32 DMA error interrupt channel
  334. unused_isr, // 33 --
  335. flash_cmd_isr, // 34 Flash Memory Command complete
  336. flash_error_isr, // 35 Flash Read collision
  337. low_voltage_isr, // 36 Low-voltage detect/warning
  338. wakeup_isr, // 37 Low Leakage Wakeup
  339. watchdog_isr, // 38 Both EWM and WDOG interrupt
  340. unused_isr, // 39 --
  341. i2c0_isr, // 40 I2C0
  342. i2c1_isr, // 41 I2C1
  343. spi0_isr, // 42 SPI0
  344. spi1_isr, // 43 SPI1
  345. unused_isr, // 44 --
  346. can0_message_isr, // 45 CAN OR'ed Message buffer (0-15)
  347. can0_bus_off_isr, // 46 CAN Bus Off
  348. can0_error_isr, // 47 CAN Error
  349. can0_tx_warn_isr, // 48 CAN Transmit Warning
  350. can0_rx_warn_isr, // 49 CAN Receive Warning
  351. can0_wakeup_isr, // 50 CAN Wake Up
  352. i2s0_tx_isr, // 51 I2S0 Transmit
  353. i2s0_rx_isr, // 52 I2S0 Receive
  354. unused_isr, // 53 --
  355. unused_isr, // 54 --
  356. unused_isr, // 55 --
  357. unused_isr, // 56 --
  358. unused_isr, // 57 --
  359. unused_isr, // 58 --
  360. unused_isr, // 59 --
  361. uart0_lon_isr, // 60 UART0 CEA709.1-B (LON) status
  362. uart0_status_isr, // 61 UART0 status
  363. uart0_error_isr, // 62 UART0 error
  364. uart1_status_isr, // 63 UART1 status
  365. uart1_error_isr, // 64 UART1 error
  366. uart2_status_isr, // 65 UART2 status
  367. uart2_error_isr, // 66 UART2 error
  368. unused_isr, // 67 --
  369. unused_isr, // 68 --
  370. unused_isr, // 69 --
  371. unused_isr, // 70 --
  372. unused_isr, // 71 --
  373. unused_isr, // 72 --
  374. adc0_isr, // 73 ADC0
  375. adc1_isr, // 74 ADC1
  376. cmp0_isr, // 75 CMP0
  377. cmp1_isr, // 76 CMP1
  378. cmp2_isr, // 77 CMP2
  379. ftm0_isr, // 78 FTM0
  380. ftm1_isr, // 79 FTM1
  381. ftm2_isr, // 80 FTM2
  382. cmt_isr, // 81 CMT
  383. rtc_alarm_isr, // 82 RTC Alarm interrupt
  384. rtc_seconds_isr, // 83 RTC Seconds interrupt
  385. pit0_isr, // 84 PIT Channel 0
  386. pit1_isr, // 85 PIT Channel 1
  387. pit2_isr, // 86 PIT Channel 2
  388. pit3_isr, // 87 PIT Channel 3
  389. pdb_isr, // 88 PDB Programmable Delay Block
  390. usb_isr, // 89 USB OTG
  391. usb_charge_isr, // 90 USB Charger Detect
  392. unused_isr, // 91 --
  393. unused_isr, // 92 --
  394. unused_isr, // 93 --
  395. unused_isr, // 94 --
  396. unused_isr, // 95 --
  397. unused_isr, // 96 --
  398. dac0_isr, // 97 DAC0
  399. unused_isr, // 98 --
  400. tsi0_isr, // 99 TSI0
  401. mcg_isr, // 100 MCG
  402. lptmr_isr, // 101 Low Power Timer
  403. unused_isr, // 102 --
  404. porta_isr, // 103 Pin detect (Port A)
  405. portb_isr, // 104 Pin detect (Port B)
  406. portc_isr, // 105 Pin detect (Port C)
  407. portd_isr, // 106 Pin detect (Port D)
  408. porte_isr, // 107 Pin detect (Port E)
  409. unused_isr, // 108 --
  410. unused_isr, // 109 --
  411. software_isr, // 110 Software interrupt
  412. #elif defined(__MKL26Z64__)
  413. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  414. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  415. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  416. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  417. unused_isr, // 20 --
  418. flash_cmd_isr, // 21 Flash Memory Command complete
  419. low_voltage_isr, // 22 Low-voltage detect/warning
  420. wakeup_isr, // 23 Low Leakage Wakeup
  421. i2c0_isr, // 24 I2C0
  422. i2c1_isr, // 25 I2C1
  423. spi0_isr, // 26 SPI0
  424. spi1_isr, // 27 SPI1
  425. uart0_status_isr, // 28 UART0 status & error
  426. uart1_status_isr, // 29 UART1 status & error
  427. uart2_status_isr, // 30 UART2 status & error
  428. adc0_isr, // 31 ADC0
  429. cmp0_isr, // 32 CMP0
  430. ftm0_isr, // 33 FTM0
  431. ftm1_isr, // 34 FTM1
  432. ftm2_isr, // 35 FTM2
  433. rtc_alarm_isr, // 36 RTC Alarm interrupt
  434. rtc_seconds_isr, // 37 RTC Seconds interrupt
  435. pit_isr, // 38 PIT Both Channels
  436. i2s0_isr, // 39 I2S0 Transmit & Receive
  437. usb_isr, // 40 USB OTG
  438. dac0_isr, // 41 DAC0
  439. tsi0_isr, // 42 TSI0
  440. mcg_isr, // 43 MCG
  441. lptmr_isr, // 44 Low Power Timer
  442. software_isr, // 45 Software interrupt
  443. porta_isr, // 46 Pin detect (Port A)
  444. portcd_isr, // 47 Pin detect (Port C and D)
  445. #elif defined(__MK64FX512__)
  446. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  447. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  448. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  449. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  450. dma_ch4_isr, // 20 DMA channel 4 transfer complete
  451. dma_ch5_isr, // 21 DMA channel 5 transfer complete
  452. dma_ch6_isr, // 22 DMA channel 6 transfer complete
  453. dma_ch7_isr, // 23 DMA channel 7 transfer complete
  454. dma_ch8_isr, // 24 DMA channel 8 transfer complete
  455. dma_ch9_isr, // 25 DMA channel 9 transfer complete
  456. dma_ch10_isr, // 26 DMA channel 10 transfer complete
  457. dma_ch11_isr, // 27 DMA channel 11 transfer complete
  458. dma_ch12_isr, // 28 DMA channel 12 transfer complete
  459. dma_ch13_isr, // 29 DMA channel 13 transfer complete
  460. dma_ch14_isr, // 30 DMA channel 14 transfer complete
  461. dma_ch15_isr, // 31 DMA channel 15 transfer complete
  462. dma_error_isr, // 32 DMA error interrupt channel
  463. mcm_isr, // 33 MCM
  464. flash_cmd_isr, // 34 Flash Memory Command complete
  465. flash_error_isr, // 35 Flash Read collision
  466. low_voltage_isr, // 36 Low-voltage detect/warning
  467. wakeup_isr, // 37 Low Leakage Wakeup
  468. watchdog_isr, // 38 Both EWM and WDOG interrupt
  469. randnum_isr, // 39 Random Number Generator
  470. i2c0_isr, // 40 I2C0
  471. i2c1_isr, // 41 I2C1
  472. spi0_isr, // 42 SPI0
  473. spi1_isr, // 43 SPI1
  474. i2s0_tx_isr, // 44 I2S0 Transmit
  475. i2s0_rx_isr, // 45 I2S0 Receive
  476. unused_isr, // 46 --
  477. uart0_status_isr, // 47 UART0 status
  478. uart0_error_isr, // 48 UART0 error
  479. uart1_status_isr, // 49 UART1 status
  480. uart1_error_isr, // 50 UART1 error
  481. uart2_status_isr, // 51 UART2 status
  482. uart2_error_isr, // 52 UART2 error
  483. uart3_status_isr, // 53 UART3 status
  484. uart3_error_isr, // 54 UART3 error
  485. adc0_isr, // 55 ADC0
  486. cmp0_isr, // 56 CMP0
  487. cmp1_isr, // 57 CMP1
  488. ftm0_isr, // 58 FTM0
  489. ftm1_isr, // 59 FTM1
  490. ftm2_isr, // 60 FTM2
  491. cmt_isr, // 61 CMT
  492. rtc_alarm_isr, // 62 RTC Alarm interrupt
  493. rtc_seconds_isr, // 63 RTC Seconds interrupt
  494. pit0_isr, // 64 PIT Channel 0
  495. pit1_isr, // 65 PIT Channel 1
  496. pit2_isr, // 66 PIT Channel 2
  497. pit3_isr, // 67 PIT Channel 3
  498. pdb_isr, // 68 PDB Programmable Delay Block
  499. usb_isr, // 69 USB OTG
  500. usb_charge_isr, // 70 USB Charger Detect
  501. unused_isr, // 71 --
  502. dac0_isr, // 72 DAC0
  503. mcg_isr, // 73 MCG
  504. lptmr_isr, // 74 Low Power Timer
  505. porta_isr, // 75 Pin detect (Port A)
  506. portb_isr, // 76 Pin detect (Port B)
  507. portc_isr, // 77 Pin detect (Port C)
  508. portd_isr, // 78 Pin detect (Port D)
  509. porte_isr, // 79 Pin detect (Port E)
  510. software_isr, // 80 Software interrupt
  511. spi2_isr, // 81 SPI2
  512. uart4_status_isr, // 82 UART4 status
  513. uart4_error_isr, // 83 UART4 error
  514. uart5_status_isr, // 84 UART4 status
  515. uart5_error_isr, // 85 UART4 error
  516. cmp2_isr, // 86 CMP2
  517. ftm3_isr, // 87 FTM3
  518. dac1_isr, // 88 DAC1
  519. adc1_isr, // 89 ADC1
  520. i2c2_isr, // 90 I2C2
  521. can0_message_isr, // 91 CAN OR'ed Message buffer (0-15)
  522. can0_bus_off_isr, // 92 CAN Bus Off
  523. can0_error_isr, // 93 CAN Error
  524. can0_tx_warn_isr, // 94 CAN Transmit Warning
  525. can0_rx_warn_isr, // 95 CAN Receive Warning
  526. can0_wakeup_isr, // 96 CAN Wake Up
  527. sdhc_isr, // 97 SDHC
  528. enet_timer_isr, // 98 Ethernet IEEE1588 Timers
  529. enet_tx_isr, // 99 Ethernet Transmit
  530. enet_rx_isr, // 100 Ethernet Receive
  531. enet_error_isr, // 101 Ethernet Error
  532. #elif defined(__MK66FX1M0__)
  533. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  534. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  535. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  536. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  537. dma_ch4_isr, // 20 DMA channel 4 transfer complete
  538. dma_ch5_isr, // 21 DMA channel 5 transfer complete
  539. dma_ch6_isr, // 22 DMA channel 6 transfer complete
  540. dma_ch7_isr, // 23 DMA channel 7 transfer complete
  541. dma_ch8_isr, // 24 DMA channel 8 transfer complete
  542. dma_ch9_isr, // 25 DMA channel 9 transfer complete
  543. dma_ch10_isr, // 26 DMA channel 10 transfer complete
  544. dma_ch11_isr, // 27 DMA channel 11 transfer complete
  545. dma_ch12_isr, // 28 DMA channel 12 transfer complete
  546. dma_ch13_isr, // 29 DMA channel 13 transfer complete
  547. dma_ch14_isr, // 30 DMA channel 14 transfer complete
  548. dma_ch15_isr, // 31 DMA channel 15 transfer complete
  549. dma_error_isr, // 32 DMA error interrupt channel
  550. mcm_isr, // 33 MCM
  551. flash_cmd_isr, // 34 Flash Memory Command complete
  552. flash_error_isr, // 35 Flash Read collision
  553. low_voltage_isr, // 36 Low-voltage detect/warning
  554. wakeup_isr, // 37 Low Leakage Wakeup
  555. watchdog_isr, // 38 Both EWM and WDOG interrupt
  556. randnum_isr, // 39 Random Number Generator
  557. i2c0_isr, // 40 I2C0
  558. i2c1_isr, // 41 I2C1
  559. spi0_isr, // 42 SPI0
  560. spi1_isr, // 43 SPI1
  561. i2s0_tx_isr, // 44 I2S0 Transmit
  562. i2s0_rx_isr, // 45 I2S0 Receive
  563. unused_isr, // 46 --
  564. uart0_status_isr, // 47 UART0 status
  565. uart0_error_isr, // 48 UART0 error
  566. uart1_status_isr, // 49 UART1 status
  567. uart1_error_isr, // 50 UART1 error
  568. uart2_status_isr, // 51 UART2 status
  569. uart2_error_isr, // 52 UART2 error
  570. uart3_status_isr, // 53 UART3 status
  571. uart3_error_isr, // 54 UART3 error
  572. adc0_isr, // 55 ADC0
  573. cmp0_isr, // 56 CMP0
  574. cmp1_isr, // 57 CMP1
  575. ftm0_isr, // 58 FTM0
  576. ftm1_isr, // 59 FTM1
  577. ftm2_isr, // 60 FTM2
  578. cmt_isr, // 61 CMT
  579. rtc_alarm_isr, // 62 RTC Alarm interrupt
  580. rtc_seconds_isr, // 63 RTC Seconds interrupt
  581. pit0_isr, // 64 PIT Channel 0
  582. pit1_isr, // 65 PIT Channel 1
  583. pit2_isr, // 66 PIT Channel 2
  584. pit3_isr, // 67 PIT Channel 3
  585. pdb_isr, // 68 PDB Programmable Delay Block
  586. usb_isr, // 69 USB OTG
  587. usb_charge_isr, // 70 USB Charger Detect
  588. unused_isr, // 71 --
  589. dac0_isr, // 72 DAC0
  590. mcg_isr, // 73 MCG
  591. lptmr_isr, // 74 Low Power Timer
  592. porta_isr, // 75 Pin detect (Port A)
  593. portb_isr, // 76 Pin detect (Port B)
  594. portc_isr, // 77 Pin detect (Port C)
  595. portd_isr, // 78 Pin detect (Port D)
  596. porte_isr, // 79 Pin detect (Port E)
  597. software_isr, // 80 Software interrupt
  598. spi2_isr, // 81 SPI2
  599. uart4_status_isr, // 82 UART4 status
  600. uart4_error_isr, // 83 UART4 error
  601. unused_isr, // 84 --
  602. unused_isr, // 85 --
  603. cmp2_isr, // 86 CMP2
  604. ftm3_isr, // 87 FTM3
  605. dac1_isr, // 88 DAC1
  606. adc1_isr, // 89 ADC1
  607. i2c2_isr, // 90 I2C2
  608. can0_message_isr, // 91 CAN OR'ed Message buffer (0-15)
  609. can0_bus_off_isr, // 92 CAN Bus Off
  610. can0_error_isr, // 93 CAN Error
  611. can0_tx_warn_isr, // 94 CAN Transmit Warning
  612. can0_rx_warn_isr, // 95 CAN Receive Warning
  613. can0_wakeup_isr, // 96 CAN Wake Up
  614. sdhc_isr, // 97 SDHC
  615. enet_timer_isr, // 98 Ethernet IEEE1588 Timers
  616. enet_tx_isr, // 99 Ethernet Transmit
  617. enet_rx_isr, // 100 Ethernet Receive
  618. enet_error_isr, // 101 Ethernet Error
  619. lpuart0_status_isr, // 102 LPUART
  620. tsi0_isr, // 103 TSI0
  621. tpm1_isr, // 104 FTM1
  622. tpm2_isr, // 105 FTM2
  623. usbhs_phy_isr, // 106 USB-HS Phy
  624. i2c3_isr, // 107 I2C3
  625. cmp3_isr, // 108 CMP3
  626. usbhs_isr, // 109 USB-HS
  627. can1_message_isr, // 110 CAN OR'ed Message buffer (0-15)
  628. can1_bus_off_isr, // 111 CAN Bus Off
  629. can1_error_isr, // 112 CAN Error
  630. can1_tx_warn_isr, // 113 CAN Transmit Warning
  631. can1_rx_warn_isr, // 114 CAN Receive Warning
  632. can1_wakeup_isr, // 115 CAN Wake Up
  633. #endif
  634. };
  635. __attribute__ ((section(".flashconfig"), used))
  636. const uint8_t flashconfigbytes[16] = {
  637. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  638. 0xFF, 0xFF, 0xFF, 0xFF, FSEC, FOPT, 0xFF, 0xFF
  639. };
  640. // Automatically initialize the RTC. When the build defines the compile
  641. // time, and the user has added a crystal, the RTC will automatically
  642. // begin at the time of the first upload.
  643. #ifndef TIME_T
  644. #define TIME_T 1349049600 // default 1 Oct 2012 (never used, Arduino sets this)
  645. #endif
  646. extern void *__rtc_localtime; // Arduino build process sets this
  647. extern void rtc_set(unsigned long t);
  648. static void startup_default_early_hook(void) {
  649. #if defined(KINETISK)
  650. WDOG_STCTRLH = WDOG_STCTRLH_ALLOWUPDATE;
  651. #elif defined(KINETISL)
  652. SIM_COPC = 0; // disable the watchdog
  653. #endif
  654. }
  655. static void startup_default_late_hook(void) {}
  656. void startup_early_hook(void) __attribute__ ((weak, alias("startup_default_early_hook")));
  657. void startup_late_hook(void) __attribute__ ((weak, alias("startup_default_late_hook")));
  658. #if defined(__PURE_CODE__) || !defined(__OPTIMIZE__) || defined(__clang__)
  659. // cases known to compile too large for 0-0x400 memory region
  660. __attribute__ ((optimize("-Os")))
  661. #else
  662. // hopefully all others fit into startup section (below 0x400)
  663. __attribute__ ((section(".startup"),optimize("-Os")))
  664. #endif
  665. void ResetHandler(void)
  666. {
  667. uint32_t *src = &_etext;
  668. uint32_t *dest = &_sdata;
  669. unsigned int i;
  670. #if F_CPU <= 2000000
  671. volatile int n;
  672. #endif
  673. //volatile int count;
  674. #ifdef KINETISK
  675. WDOG_UNLOCK = WDOG_UNLOCK_SEQ1;
  676. WDOG_UNLOCK = WDOG_UNLOCK_SEQ2;
  677. __asm__ volatile ("nop");
  678. __asm__ volatile ("nop");
  679. #endif
  680. // programs using the watchdog timer or needing to initialize hardware as
  681. // early as possible can implement startup_early_hook()
  682. startup_early_hook();
  683. // enable clocks to always-used peripherals
  684. #if defined(__MK20DX128__)
  685. SIM_SCGC5 = 0x00043F82; // clocks active to all GPIO
  686. SIM_SCGC6 = SIM_SCGC6_RTC | SIM_SCGC6_FTM0 | SIM_SCGC6_FTM1 | SIM_SCGC6_ADC0 | SIM_SCGC6_FTFL;
  687. #elif defined(__MK20DX256__)
  688. SIM_SCGC3 = SIM_SCGC3_ADC1 | SIM_SCGC3_FTM2;
  689. SIM_SCGC5 = 0x00043F82; // clocks active to all GPIO
  690. SIM_SCGC6 = SIM_SCGC6_RTC | SIM_SCGC6_FTM0 | SIM_SCGC6_FTM1 | SIM_SCGC6_ADC0 | SIM_SCGC6_FTFL;
  691. #elif defined(__MK64FX512__) || defined(__MK66FX1M0__)
  692. SIM_SCGC3 = SIM_SCGC3_ADC1 | SIM_SCGC3_FTM2 | SIM_SCGC3_FTM3;
  693. SIM_SCGC5 = 0x00043F82; // clocks active to all GPIO
  694. SIM_SCGC6 = SIM_SCGC6_RTC | SIM_SCGC6_FTM0 | SIM_SCGC6_FTM1 | SIM_SCGC6_ADC0 | SIM_SCGC6_FTFL;
  695. //PORTC_PCR5 = PORT_PCR_MUX(1) | PORT_PCR_DSE | PORT_PCR_SRE;
  696. //GPIOC_PDDR |= (1<<5);
  697. //GPIOC_PSOR = (1<<5);
  698. //while (1);
  699. #elif defined(__MKL26Z64__)
  700. SIM_SCGC4 = SIM_SCGC4_USBOTG | 0xF0000030;
  701. SIM_SCGC5 = 0x00003F82; // clocks active to all GPIO
  702. SIM_SCGC6 = SIM_SCGC6_ADC0 | SIM_SCGC6_TPM0 | SIM_SCGC6_TPM1 | SIM_SCGC6_TPM2 | SIM_SCGC6_FTFL;
  703. #endif
  704. #if defined(__MK64FX512__) || defined(__MK66FX1M0__)
  705. SCB_CPACR = 0x00F00000;
  706. #endif
  707. #if defined(__MK66FX1M0__)
  708. LMEM_PCCCR = 0x85000003;
  709. #endif
  710. #if 0
  711. // testing only, enable ser_print
  712. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV4(1);
  713. MCG_C4 |= MCG_C4_DMX32 | MCG_C4_DRST_DRS(1);
  714. SIM_SOPT2 = SIM_SOPT2_UART0SRC(1) | SIM_SOPT2_TPMSRC(1);
  715. SIM_SCGC4 |= 0x00000400;
  716. UART0_BDH = 0;
  717. UART0_BDL = 26; // 115200 at 48 MHz
  718. UART0_C2 = UART_C2_TE;
  719. PORTB_PCR17 = PORT_PCR_MUX(3);
  720. #endif
  721. #ifdef KINETISK
  722. // if the RTC oscillator isn't enabled, get it started early
  723. if (!(RTC_CR & RTC_CR_OSCE)) {
  724. RTC_SR = 0;
  725. RTC_CR = RTC_CR_SC16P | RTC_CR_SC4P | RTC_CR_OSCE;
  726. }
  727. #endif
  728. // release I/O pins hold, if we woke up from VLLS mode
  729. if (PMC_REGSC & PMC_REGSC_ACKISO) PMC_REGSC |= PMC_REGSC_ACKISO;
  730. // since this is a write once register, make it visible to all F_CPU's
  731. // so we can into other sleep modes in the future at any speed
  732. #if defined(__MK66FX1M0__)
  733. SMC_PMPROT = SMC_PMPROT_AHSRUN | SMC_PMPROT_AVLP | SMC_PMPROT_ALLS | SMC_PMPROT_AVLLS;
  734. #else
  735. SMC_PMPROT = SMC_PMPROT_AVLP | SMC_PMPROT_ALLS | SMC_PMPROT_AVLLS;
  736. #endif
  737. // TODO: do this while the PLL is waiting to lock....
  738. while (dest < &_edata) *dest++ = *src++;
  739. dest = &_sbss;
  740. while (dest < &_ebss) *dest++ = 0;
  741. // default all interrupts to medium priority level
  742. for (i=0; i < NVIC_NUM_INTERRUPTS + 16; i++) _VectorsRam[i] = _VectorsFlash[i];
  743. for (i=0; i < NVIC_NUM_INTERRUPTS; i++) NVIC_SET_PRIORITY(i, 128);
  744. SCB_VTOR = (uint32_t)_VectorsRam; // use vector table in RAM
  745. // hardware always starts in FEI mode
  746. // C1[CLKS] bits are written to 00
  747. // C1[IREFS] bit is written to 1
  748. // C6[PLLS] bit is written to 0
  749. // MCG_SC[FCDIV] defaults to divide by two for internal ref clock
  750. // I tried changing MSG_SC to divide by 1, it didn't work for me
  751. #if F_CPU <= 2000000
  752. #if defined(KINETISK)
  753. MCG_C1 = MCG_C1_CLKS(1) | MCG_C1_IREFS;
  754. #elif defined(KINETISL)
  755. // use the internal oscillator
  756. MCG_C1 = MCG_C1_CLKS(1) | MCG_C1_IREFS | MCG_C1_IRCLKEN;
  757. #endif
  758. // wait for MCGOUT to use oscillator
  759. while ((MCG_S & MCG_S_CLKST_MASK) != MCG_S_CLKST(1)) ;
  760. for (n=0; n<10; n++) ; // TODO: why do we get 2 mA extra without this delay?
  761. MCG_C2 = MCG_C2_IRCS;
  762. while (!(MCG_S & MCG_S_IRCST)) ;
  763. // now in FBI mode:
  764. // C1[CLKS] bits are written to 01
  765. // C1[IREFS] bit is written to 1
  766. // C6[PLLS] is written to 0
  767. // C2[LP] is written to 0
  768. MCG_C2 = MCG_C2_IRCS | MCG_C2_LP;
  769. // now in BLPI mode:
  770. // C1[CLKS] bits are written to 01
  771. // C1[IREFS] bit is written to 1
  772. // C6[PLLS] bit is written to 0
  773. // C2[LP] bit is written to 1
  774. #else
  775. #if defined(KINETISK)
  776. // enable capacitors for crystal
  777. OSC0_CR = OSC_SC8P | OSC_SC2P | OSC_ERCLKEN;
  778. #elif defined(KINETISL)
  779. // enable capacitors for crystal
  780. OSC0_CR = OSC_SC8P | OSC_SC2P | OSC_ERCLKEN;
  781. #endif
  782. // enable osc, 8-32 MHz range, low power mode
  783. MCG_C2 = MCG_C2_RANGE0(2) | MCG_C2_EREFS;
  784. // switch to crystal as clock source, FLL input = 16 MHz / 512
  785. MCG_C1 = MCG_C1_CLKS(2) | MCG_C1_FRDIV(4);
  786. // wait for crystal oscillator to begin
  787. while ((MCG_S & MCG_S_OSCINIT0) == 0) ;
  788. // wait for FLL to use oscillator
  789. while ((MCG_S & MCG_S_IREFST) != 0) ;
  790. // wait for MCGOUT to use oscillator
  791. while ((MCG_S & MCG_S_CLKST_MASK) != MCG_S_CLKST(2)) ;
  792. // now in FBE mode
  793. // C1[CLKS] bits are written to 10
  794. // C1[IREFS] bit is written to 0
  795. // C1[FRDIV] must be written to divide xtal to 31.25-39 kHz
  796. // C6[PLLS] bit is written to 0
  797. // C2[LP] is written to 0
  798. #if F_CPU <= 16000000
  799. // if the crystal is fast enough, use it directly (no FLL or PLL)
  800. MCG_C2 = MCG_C2_RANGE0(2) | MCG_C2_EREFS | MCG_C2_LP;
  801. // BLPE mode:
  802. // C1[CLKS] bits are written to 10
  803. // C1[IREFS] bit is written to 0
  804. // C2[LP] bit is written to 1
  805. #else
  806. // if we need faster than the crystal, turn on the PLL
  807. #if defined(__MK66FX1M0__)
  808. #if F_CPU > 120000000
  809. SMC_PMCTRL = SMC_PMCTRL_RUNM(3); // enter HSRUN mode
  810. while (SMC_PMSTAT != SMC_PMSTAT_HSRUN) ; // wait for HSRUN
  811. #endif
  812. #if F_CPU == 256000000
  813. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(16);
  814. #elif F_CPU == 240000000
  815. MCG_C5 = MCG_C5_PRDIV0(0);
  816. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(14);
  817. #elif F_CPU == 216000000
  818. MCG_C5 = MCG_C5_PRDIV0(0);
  819. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(11);
  820. #elif F_CPU == 192000000
  821. MCG_C5 = MCG_C5_PRDIV0(0);
  822. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(8);
  823. #elif F_CPU == 180000000
  824. MCG_C5 = MCG_C5_PRDIV0(1);
  825. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(29);
  826. #elif F_CPU == 168000000
  827. MCG_C5 = MCG_C5_PRDIV0(0);
  828. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(5);
  829. #elif F_CPU == 144000000
  830. MCG_C5 = MCG_C5_PRDIV0(0);
  831. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(2);
  832. #elif F_CPU == 120000000
  833. MCG_C5 = MCG_C5_PRDIV0(1);
  834. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(14);
  835. #elif F_CPU == 96000000 || F_CPU == 48000000 || F_CPU == 24000000
  836. MCG_C5 = MCG_C5_PRDIV0(1);
  837. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(8);
  838. #elif F_CPU == 72000000
  839. MCG_C5 = MCG_C5_PRDIV0(1);
  840. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(2);
  841. #elif F_CPU > 16000000
  842. #error "MK66FX1M0 does not support this clock speed yet...."
  843. #endif
  844. #else
  845. #if F_CPU == 72000000
  846. MCG_C5 = MCG_C5_PRDIV0(5); // config PLL input for 16 MHz Crystal / 6 = 2.667 Hz
  847. #else
  848. MCG_C5 = MCG_C5_PRDIV0(3); // config PLL input for 16 MHz Crystal / 4 = 4 MHz
  849. #endif
  850. #if F_CPU == 168000000
  851. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(18); // config PLL for 168 MHz output
  852. #elif F_CPU == 144000000
  853. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(12); // config PLL for 144 MHz output
  854. #elif F_CPU == 120000000
  855. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(6); // config PLL for 120 MHz output
  856. #elif F_CPU == 72000000
  857. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(3); // config PLL for 72 MHz output
  858. #elif F_CPU == 96000000 || F_CPU == 48000000 || F_CPU == 24000000
  859. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(0); // config PLL for 96 MHz output
  860. #elif F_CPU > 16000000
  861. #error "This clock speed isn't supported..."
  862. #endif
  863. #endif
  864. // wait for PLL to start using xtal as its input
  865. while (!(MCG_S & MCG_S_PLLST)) ;
  866. // wait for PLL to lock
  867. while (!(MCG_S & MCG_S_LOCK0)) ;
  868. // now we're in PBE mode
  869. #endif
  870. #endif
  871. // now program the clock dividers
  872. #if F_CPU == 256000000
  873. // config divisors: 256 MHz core, 64 MHz bus, 32 MHz flash, USB = IRC48M
  874. // TODO: gradual ramp-up for HSRUN mode
  875. #if F_BUS == 64000000
  876. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(3) | SIM_CLKDIV1_OUTDIV4(7);
  877. #elif F_BUS == 128000000
  878. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(7);
  879. #else
  880. #error "This F_CPU & F_BUS combination is not supported"
  881. #endif
  882. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(0);
  883. #elif F_CPU == 240000000
  884. // config divisors: 240 MHz core, 60 MHz bus, 30 MHz flash, USB = 240 / 5
  885. // TODO: gradual ramp-up for HSRUN mode
  886. #if F_BUS == 60000000
  887. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(3) | SIM_CLKDIV1_OUTDIV4(7);
  888. #elif F_BUS == 80000000
  889. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(2) | SIM_CLKDIV1_OUTDIV4(7);
  890. #elif F_BUS == 120000000
  891. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(7);
  892. #else
  893. #error "This F_CPU & F_BUS combination is not supported"
  894. #endif
  895. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(4);
  896. #elif F_CPU == 216000000
  897. // config divisors: 216 MHz core, 54 MHz bus, 27 MHz flash, USB = IRC48M
  898. // TODO: gradual ramp-up for HSRUN mode
  899. #if F_BUS == 54000000
  900. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(3) | SIM_CLKDIV1_OUTDIV4(7);
  901. #elif F_BUS == 72000000
  902. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(2) | SIM_CLKDIV1_OUTDIV4(7);
  903. #elif F_BUS == 108000000
  904. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(7);
  905. #else
  906. #error "This F_CPU & F_BUS combination is not supported"
  907. #endif
  908. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(0);
  909. #elif F_CPU == 192000000
  910. // config divisors: 192 MHz core, 48 MHz bus, 27.4 MHz flash, USB = 192 / 4
  911. // TODO: gradual ramp-up for HSRUN mode
  912. #if F_BUS == 48000000
  913. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(3) | SIM_CLKDIV1_OUTDIV4(6);
  914. #elif F_BUS == 64000000
  915. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(2) | SIM_CLKDIV1_OUTDIV4(6);
  916. #elif F_BUS == 96000000
  917. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(6);
  918. #else
  919. #error "This F_CPU & F_BUS combination is not supported"
  920. #endif
  921. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(3);
  922. #elif F_CPU == 180000000
  923. // config divisors: 180 MHz core, 60 MHz bus, 25.7 MHz flash, USB = IRC48M
  924. #if F_BUS == 60000000
  925. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(2) | SIM_CLKDIV1_OUTDIV4(6);
  926. #elif F_BUS == 90000000
  927. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(6);
  928. #else
  929. #error "This F_CPU & F_BUS combination is not supported"
  930. #endif
  931. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(0);
  932. #elif F_CPU == 168000000
  933. // config divisors: 168 MHz core, 56 MHz bus, 28 MHz flash, USB = 168 * 2 / 7
  934. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(2) | SIM_CLKDIV1_OUTDIV4(5);
  935. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(6) | SIM_CLKDIV2_USBFRAC;
  936. #elif F_CPU == 144000000
  937. // config divisors: 144 MHz core, 48 MHz bus, 28.8 MHz flash, USB = 144 / 3
  938. #if F_BUS == 48000000
  939. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(2) | SIM_CLKDIV1_OUTDIV4(4);
  940. #elif F_BUS == 72000000
  941. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(4);
  942. #else
  943. #error "This F_CPU & F_BUS combination is not supported"
  944. #endif
  945. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(2);
  946. #elif F_CPU == 120000000
  947. // config divisors: 120 MHz core, 60 MHz bus, 24 MHz flash, USB = 128 * 2 / 5
  948. #if F_BUS == 60000000
  949. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(4);
  950. #elif F_BUS == 120000000
  951. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(0) | SIM_CLKDIV1_OUTDIV4(4);
  952. #else
  953. #error "This F_CPU & F_BUS combination is not supported"
  954. #endif
  955. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(4) | SIM_CLKDIV2_USBFRAC;
  956. #elif F_CPU == 96000000
  957. // config divisors: 96 MHz core, 48 MHz bus, 24 MHz flash, USB = 96 / 2
  958. #if F_BUS == 48000000
  959. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(3);
  960. #elif F_BUS == 96000000
  961. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(0) | SIM_CLKDIV1_OUTDIV4(3);
  962. #else
  963. #error "This F_CPU & F_BUS combination is not supported"
  964. #endif
  965. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(1);
  966. #elif F_CPU == 72000000
  967. // config divisors: 72 MHz core, 36 MHz bus, 24 MHz flash, USB = 72 * 2 / 3
  968. #if F_BUS == 36000000
  969. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(2);
  970. #elif F_BUS == 72000000
  971. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(0) | SIM_CLKDIV1_OUTDIV4(2);
  972. #else
  973. #error "This F_CPU & F_BUS combination is not supported"
  974. #endif
  975. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(2) | SIM_CLKDIV2_USBFRAC;
  976. #elif F_CPU == 48000000
  977. // config divisors: 48 MHz core, 48 MHz bus, 24 MHz flash, USB = 96 / 2
  978. #if defined(KINETISK)
  979. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(1) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV3(1) | SIM_CLKDIV1_OUTDIV4(3);
  980. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(1);
  981. #elif defined(KINETISL)
  982. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(1) | SIM_CLKDIV1_OUTDIV4(1);
  983. #endif
  984. #elif F_CPU == 24000000
  985. // config divisors: 24 MHz core, 24 MHz bus, 24 MHz flash, USB = 96 / 2
  986. #if defined(KINETISK)
  987. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(3) | SIM_CLKDIV1_OUTDIV2(3) | SIM_CLKDIV1_OUTDIV3(3) | SIM_CLKDIV1_OUTDIV4(3);
  988. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(1);
  989. #elif defined(KINETISL)
  990. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(3) | SIM_CLKDIV1_OUTDIV4(0);
  991. #endif
  992. #elif F_CPU == 16000000
  993. // config divisors: 16 MHz core, 16 MHz bus, 16 MHz flash
  994. #if defined(KINETISK)
  995. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(0) | SIM_CLKDIV1_OUTDIV3(0) | SIM_CLKDIV1_OUTDIV4(0);
  996. #elif defined(KINETISL)
  997. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV4(0);
  998. #endif
  999. #elif F_CPU == 8000000
  1000. // config divisors: 8 MHz core, 8 MHz bus, 8 MHz flash
  1001. #if defined(KINETISK)
  1002. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(1) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV3(1) | SIM_CLKDIV1_OUTDIV4(1);
  1003. #elif defined(KINETISL)
  1004. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(1) | SIM_CLKDIV1_OUTDIV4(0);
  1005. #endif
  1006. #elif F_CPU == 4000000
  1007. // config divisors: 4 MHz core, 4 MHz bus, 2 MHz flash
  1008. // since we are running from external clock 16MHz
  1009. // fix outdiv too -> cpu 16/4, bus 16/4, flash 16/4
  1010. // here we can go into vlpr?
  1011. // config divisors: 4 MHz core, 4 MHz bus, 4 MHz flash
  1012. #if defined(KINETISK)
  1013. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(3) | SIM_CLKDIV1_OUTDIV2(3) | SIM_CLKDIV1_OUTDIV3(3) | SIM_CLKDIV1_OUTDIV4(3);
  1014. #elif defined(KINETISL)
  1015. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(3) | SIM_CLKDIV1_OUTDIV4(0);
  1016. #endif
  1017. #elif F_CPU == 2000000
  1018. // since we are running from the fast internal reference clock 4MHz
  1019. // but is divided down by 2 so we actually have a 2MHz, MCG_SC[FCDIV] default is 2
  1020. // fix outdiv -> cpu 2/1, bus 2/1, flash 2/2
  1021. // config divisors: 2 MHz core, 2 MHz bus, 1 MHz flash
  1022. #if defined(KINETISK)
  1023. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(0) | SIM_CLKDIV1_OUTDIV4(1);
  1024. #elif defined(KINETISL)
  1025. // config divisors: 2 MHz core, 1 MHz bus, 1 MHz flash
  1026. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV4(1);
  1027. #endif
  1028. #else
  1029. #error "Error, F_CPU must be 192, 180, 168, 144, 120, 96, 72, 48, 24, 16, 8, 4, or 2 MHz"
  1030. #endif
  1031. #if F_CPU > 16000000
  1032. // switch to PLL as clock source, FLL input = 16 MHz / 512
  1033. MCG_C1 = MCG_C1_CLKS(0) | MCG_C1_FRDIV(4);
  1034. // wait for PLL clock to be used
  1035. while ((MCG_S & MCG_S_CLKST_MASK) != MCG_S_CLKST(3)) ;
  1036. // now we're in PEE mode
  1037. // USB uses PLL clock, trace is CPU clock, CLKOUT=OSCERCLK0
  1038. #if defined(KINETISK)
  1039. #if F_CPU == 256000000 || F_CPU == 216000000 || F_CPU == 180000000
  1040. SIM_SOPT2 = SIM_SOPT2_USBSRC | SIM_SOPT2_IRC48SEL | SIM_SOPT2_TRACECLKSEL | SIM_SOPT2_CLKOUTSEL(6);
  1041. #else
  1042. SIM_SOPT2 = SIM_SOPT2_USBSRC | SIM_SOPT2_PLLFLLSEL | SIM_SOPT2_TRACECLKSEL | SIM_SOPT2_CLKOUTSEL(6);
  1043. #endif
  1044. #elif defined(KINETISL)
  1045. SIM_SOPT2 = SIM_SOPT2_USBSRC | SIM_SOPT2_PLLFLLSEL | SIM_SOPT2_CLKOUTSEL(6)
  1046. | SIM_SOPT2_UART0SRC(1) | SIM_SOPT2_TPMSRC(1);
  1047. #endif
  1048. #else
  1049. #if F_CPU == 2000000
  1050. SIM_SOPT2 = SIM_SOPT2_TRACECLKSEL | SIM_SOPT2_CLKOUTSEL(4) | SIM_SOPT2_UART0SRC(3);
  1051. #else
  1052. SIM_SOPT2 = SIM_SOPT2_TRACECLKSEL | SIM_SOPT2_CLKOUTSEL(6) | SIM_SOPT2_UART0SRC(2);
  1053. #endif
  1054. #endif
  1055. #if F_CPU <= 2000000
  1056. // since we are not going into "stop mode" i removed it
  1057. SMC_PMCTRL = SMC_PMCTRL_RUNM(2); // VLPR mode :-)
  1058. #endif
  1059. // initialize the SysTick counter
  1060. SYST_RVR = (F_CPU / 1000) - 1;
  1061. SYST_CVR = 0;
  1062. SYST_CSR = SYST_CSR_CLKSOURCE | SYST_CSR_TICKINT | SYST_CSR_ENABLE;
  1063. SCB_SHPR3 = 0x20200000; // Systick = priority 32
  1064. //init_pins();
  1065. __enable_irq();
  1066. _init_Teensyduino_internal_();
  1067. #if defined(KINETISK)
  1068. // RTC initialization
  1069. if (RTC_SR & RTC_SR_TIF) {
  1070. // this code will normally run on a power-up reset
  1071. // when VBAT has detected a power-up. Normally our
  1072. // compiled-in time will be stale. Write a special
  1073. // flag into the VBAT register file indicating the
  1074. // RTC is set with known-stale time and should be
  1075. // updated when fresh time is known.
  1076. #if ARDUINO >= 10600
  1077. rtc_set((uint32_t)&__rtc_localtime);
  1078. #else
  1079. rtc_set(TIME_T);
  1080. #endif
  1081. *(uint32_t *)0x4003E01C = 0x5A94C3A5;
  1082. }
  1083. if ((RCM_SRS0 & RCM_SRS0_PIN) && (*(uint32_t *)0x4003E01C == 0x5A94C3A5)) {
  1084. // this code should run immediately after an upload
  1085. // where the Teensy Loader causes the Mini54 to reset.
  1086. // Our compiled-in time will be very fresh, so set
  1087. // the RTC with this, and clear the VBAT resister file
  1088. // data so we don't mess with the time after it's been
  1089. // set well.
  1090. #if ARDUINO >= 10600
  1091. rtc_set((uint32_t)&__rtc_localtime);
  1092. #else
  1093. rtc_set(TIME_T);
  1094. #endif
  1095. *(uint32_t *)0x4003E01C = 0;
  1096. }
  1097. #endif
  1098. __libc_init_array();
  1099. startup_late_hook();
  1100. main();
  1101. while (1) ;
  1102. }
  1103. char *__brkval = (char *)&_ebss;
  1104. #ifndef STACK_MARGIN
  1105. #if defined(__MKL26Z64__)
  1106. #define STACK_MARGIN 512
  1107. #elif defined(__MK20DX128__)
  1108. #define STACK_MARGIN 1024
  1109. #elif defined(__MK20DX256__)
  1110. #define STACK_MARGIN 4096
  1111. #elif defined(__MK64FX512__) || defined(__MK66FX1M0__)
  1112. #define STACK_MARGIN 8192
  1113. #endif
  1114. #endif
  1115. #pragma GCC diagnostic push
  1116. #pragma GCC diagnostic ignored "-Wunused-parameter"
  1117. void * _sbrk(int incr)
  1118. {
  1119. char *prev, *stack;
  1120. prev = __brkval;
  1121. if (incr != 0) {
  1122. __asm__ volatile("mov %0, sp" : "=r" (stack) ::);
  1123. if (prev + incr >= stack - STACK_MARGIN) {
  1124. errno = ENOMEM;
  1125. return (void *)-1;
  1126. }
  1127. __brkval = prev + incr;
  1128. }
  1129. return prev;
  1130. }
  1131. __attribute__((weak))
  1132. int _read(int file, char *ptr, int len)
  1133. {
  1134. return 0;
  1135. }
  1136. __attribute__((weak))
  1137. int _close(int fd)
  1138. {
  1139. return -1;
  1140. }
  1141. #include <sys/stat.h>
  1142. __attribute__((weak))
  1143. int _fstat(int fd, struct stat *st)
  1144. {
  1145. st->st_mode = S_IFCHR;
  1146. return 0;
  1147. }
  1148. __attribute__((weak))
  1149. int _isatty(int fd)
  1150. {
  1151. return 1;
  1152. }
  1153. __attribute__((weak))
  1154. int _lseek(int fd, long long offset, int whence)
  1155. {
  1156. return -1;
  1157. }
  1158. __attribute__((weak))
  1159. void _exit(int status)
  1160. {
  1161. while (1);
  1162. }
  1163. __attribute__((weak))
  1164. void __cxa_pure_virtual()
  1165. {
  1166. while (1);
  1167. }
  1168. __attribute__((weak))
  1169. int __cxa_guard_acquire (char *g)
  1170. {
  1171. return !(*g);
  1172. }
  1173. __attribute__((weak))
  1174. void __cxa_guard_release(char *g)
  1175. {
  1176. *g = 1;
  1177. }
  1178. __attribute__((weak))
  1179. void abort(void)
  1180. {
  1181. while (1) ;
  1182. }
  1183. #pragma GCC diagnostic pop
  1184. int nvic_execution_priority(void)
  1185. {
  1186. uint32_t priority=256;
  1187. uint32_t primask, faultmask, basepri, ipsr;
  1188. // full algorithm in ARM DDI0403D, page B1-639
  1189. // this isn't quite complete, but hopefully good enough
  1190. __asm__ volatile("mrs %0, faultmask\n" : "=r" (faultmask)::);
  1191. if (faultmask) return -1;
  1192. __asm__ volatile("mrs %0, primask\n" : "=r" (primask)::);
  1193. if (primask) return 0;
  1194. __asm__ volatile("mrs %0, ipsr\n" : "=r" (ipsr)::);
  1195. if (ipsr) {
  1196. if (ipsr < 16) priority = 0; // could be non-zero
  1197. else priority = NVIC_GET_PRIORITY(ipsr - 16);
  1198. }
  1199. __asm__ volatile("mrs %0, basepri\n" : "=r" (basepri)::);
  1200. if (basepri > 0 && basepri < priority) priority = basepri;
  1201. return priority;
  1202. }
  1203. #if defined(HAS_KINETIS_HSRUN) && F_CPU > 120000000
  1204. int kinetis_hsrun_disable(void)
  1205. {
  1206. if (SMC_PMSTAT == SMC_PMSTAT_HSRUN) {
  1207. // First, reduce the CPU clock speed, but do not change
  1208. // the peripheral speed (F_BUS). Serial1 & Serial2 baud
  1209. // rates will be impacted, but most other peripherals
  1210. // will continue functioning at the same speed.
  1211. #if F_CPU == 256000000 && F_BUS == 64000000
  1212. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 3, 1, 7); // TODO: TEST
  1213. #elif F_CPU == 256000000 && F_BUS == 128000000
  1214. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 1, 1, 7); // TODO: TEST
  1215. #elif F_CPU == 240000000 && F_BUS == 60000000
  1216. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 3, 1, 7); // ok
  1217. #elif F_CPU == 240000000 && F_BUS == 80000000
  1218. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(2, 2, 2, 8); // ok
  1219. #elif F_CPU == 240000000 && F_BUS == 120000000
  1220. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 1, 1, 7); // ok
  1221. #elif F_CPU == 216000000 && F_BUS == 54000000
  1222. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 3, 1, 7); // ok
  1223. #elif F_CPU == 216000000 && F_BUS == 72000000
  1224. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(2, 2, 2, 8); // ok
  1225. #elif F_CPU == 216000000 && F_BUS == 108000000
  1226. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 1, 1, 7); // ok
  1227. #elif F_CPU == 192000000 && F_BUS == 48000000
  1228. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 3, 1, 7); // ok
  1229. #elif F_CPU == 192000000 && F_BUS == 64000000
  1230. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(2, 2, 2, 8); // ok
  1231. #elif F_CPU == 192000000 && F_BUS == 96000000
  1232. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 1, 1, 7); // ok
  1233. #elif F_CPU == 180000000 && F_BUS == 60000000
  1234. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(2, 2, 2, 8); // ok
  1235. #elif F_CPU == 180000000 && F_BUS == 90000000
  1236. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 1, 1, 7); // ok
  1237. #elif F_CPU == 168000000 && F_BUS == 56000000
  1238. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(2, 2, 2, 5); // ok
  1239. #elif F_CPU == 144000000 && F_BUS == 48000000
  1240. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(2, 2, 2, 5); // ok
  1241. #elif F_CPU == 144000000 && F_BUS == 72000000
  1242. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(1, 1, 1, 5); // ok
  1243. #else
  1244. return 0;
  1245. #endif
  1246. // Then turn off HSRUN mode
  1247. SMC_PMCTRL = SMC_PMCTRL_RUNM(0);
  1248. while (SMC_PMSTAT == SMC_PMSTAT_HSRUN) ; // wait
  1249. return 1;
  1250. }
  1251. return 0;
  1252. }
  1253. int kinetis_hsrun_enable(void)
  1254. {
  1255. if (SMC_PMSTAT == SMC_PMSTAT_RUN) {
  1256. // Turn HSRUN mode on
  1257. SMC_PMCTRL = SMC_PMCTRL_RUNM(3);
  1258. while (SMC_PMSTAT != SMC_PMSTAT_HSRUN) {;} // wait
  1259. // Then configure clock for full speed
  1260. #if F_CPU == 256000000 && F_BUS == 64000000
  1261. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 3, 0, 7);
  1262. #elif F_CPU == 256000000 && F_BUS == 128000000
  1263. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 1, 0, 7);
  1264. #elif F_CPU == 240000000 && F_BUS == 60000000
  1265. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 3, 0, 7);
  1266. #elif F_CPU == 240000000 && F_BUS == 80000000
  1267. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 2, 0, 7);
  1268. #elif F_CPU == 240000000 && F_BUS == 120000000
  1269. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 1, 0, 7);
  1270. #elif F_CPU == 216000000 && F_BUS == 54000000
  1271. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 3, 0, 7);
  1272. #elif F_CPU == 216000000 && F_BUS == 72000000
  1273. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 2, 0, 7);
  1274. #elif F_CPU == 216000000 && F_BUS == 108000000
  1275. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 1, 0, 7);
  1276. #elif F_CPU == 192000000 && F_BUS == 48000000
  1277. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 3, 0, 6);
  1278. #elif F_CPU == 192000000 && F_BUS == 64000000
  1279. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 2, 0, 6);
  1280. #elif F_CPU == 192000000 && F_BUS == 96000000
  1281. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 1, 0, 6);
  1282. #elif F_CPU == 180000000 && F_BUS == 60000000
  1283. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 2, 0, 6);
  1284. #elif F_CPU == 180000000 && F_BUS == 90000000
  1285. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 1, 0, 6);
  1286. #elif F_CPU == 168000000 && F_BUS == 56000000
  1287. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 2, 0, 5);
  1288. #elif F_CPU == 144000000 && F_BUS == 48000000
  1289. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 2, 0, 4);
  1290. #elif F_CPU == 144000000 && F_BUS == 72000000
  1291. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIVS(0, 1, 0, 4);
  1292. #else
  1293. return 0;
  1294. #endif
  1295. return 1;
  1296. }
  1297. return 0;
  1298. }
  1299. #endif // HAS_KINETIS_HSRUN && F_CPU > 120000000