Kiibohd Controller
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

mk20dx.c 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. /* Teensyduino Core Library
  2. * http://www.pjrc.com/teensy/
  3. * Copyright (c) 2013 PJRC.COM, LLC.
  4. * Modifications by Jacob Alexander 2014
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sublicense, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * 1. The above copyright notice and this permission notice shall be
  15. * included in all copies or substantial portions of the Software.
  16. *
  17. * 2. If the Software is incorporated into a build system that allows
  18. * selection among a list of target devices, then similar target
  19. * devices manufactured by PJRC.COM must be included in the list of
  20. * target devices and selectable in the same manner.
  21. *
  22. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  23. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  24. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  25. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  26. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  28. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  29. * SOFTWARE.
  30. */
  31. #include "mk20dx.h"
  32. extern unsigned long _stext;
  33. extern unsigned long _etext;
  34. extern unsigned long _sdata;
  35. extern unsigned long _edata;
  36. extern unsigned long _sbss;
  37. extern unsigned long _ebss;
  38. extern unsigned long _estack;
  39. //extern void __init_array_start(void);
  40. //extern void __init_array_end(void);
  41. extern int main (void);
  42. void ResetHandler(void);
  43. void _init_Teensyduino_internal_(void);
  44. void __libc_init_array(void);
  45. void fault_isr(void)
  46. {
  47. while (1) {
  48. // keep polling some communication while in fault
  49. // mode, so we don't completely die.
  50. if (SIM_SCGC4 & SIM_SCGC4_USBOTG) usb_isr();
  51. if (SIM_SCGC4 & SIM_SCGC4_UART0) uart0_status_isr();
  52. if (SIM_SCGC4 & SIM_SCGC4_UART1) uart1_status_isr();
  53. if (SIM_SCGC4 & SIM_SCGC4_UART2) uart2_status_isr();
  54. }
  55. }
  56. void unused_isr(void)
  57. {
  58. fault_isr();
  59. }
  60. extern volatile uint32_t systick_millis_count;
  61. void systick_default_isr(void)
  62. {
  63. systick_millis_count++;
  64. }
  65. void nmi_isr(void) __attribute__ ((weak, alias("unused_isr")));
  66. void hard_fault_isr(void) __attribute__ ((weak, alias("unused_isr")));
  67. void memmanage_fault_isr(void) __attribute__ ((weak, alias("unused_isr")));
  68. void bus_fault_isr(void) __attribute__ ((weak, alias("unused_isr")));
  69. void usage_fault_isr(void) __attribute__ ((weak, alias("unused_isr")));
  70. void svcall_isr(void) __attribute__ ((weak, alias("unused_isr")));
  71. void debugmonitor_isr(void) __attribute__ ((weak, alias("unused_isr")));
  72. void pendablesrvreq_isr(void) __attribute__ ((weak, alias("unused_isr")));
  73. void systick_isr(void) __attribute__ ((weak, alias("systick_default_isr")));
  74. void dma_ch0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  75. void dma_ch1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  76. void dma_ch2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  77. void dma_ch3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  78. void dma_ch4_isr(void) __attribute__ ((weak, alias("unused_isr")));
  79. void dma_ch5_isr(void) __attribute__ ((weak, alias("unused_isr")));
  80. void dma_ch6_isr(void) __attribute__ ((weak, alias("unused_isr")));
  81. void dma_ch7_isr(void) __attribute__ ((weak, alias("unused_isr")));
  82. void dma_ch8_isr(void) __attribute__ ((weak, alias("unused_isr")));
  83. void dma_ch9_isr(void) __attribute__ ((weak, alias("unused_isr")));
  84. void dma_ch10_isr(void) __attribute__ ((weak, alias("unused_isr")));
  85. void dma_ch11_isr(void) __attribute__ ((weak, alias("unused_isr")));
  86. void dma_ch12_isr(void) __attribute__ ((weak, alias("unused_isr")));
  87. void dma_ch13_isr(void) __attribute__ ((weak, alias("unused_isr")));
  88. void dma_ch14_isr(void) __attribute__ ((weak, alias("unused_isr")));
  89. void dma_ch15_isr(void) __attribute__ ((weak, alias("unused_isr")));
  90. void dma_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  91. void mcm_isr(void) __attribute__ ((weak, alias("unused_isr")));
  92. void flash_cmd_isr(void) __attribute__ ((weak, alias("unused_isr")));
  93. void flash_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  94. void low_voltage_isr(void) __attribute__ ((weak, alias("unused_isr")));
  95. void wakeup_isr(void) __attribute__ ((weak, alias("unused_isr")));
  96. void watchdog_isr(void) __attribute__ ((weak, alias("unused_isr")));
  97. void i2c0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  98. void i2c1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  99. void i2c2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  100. void spi0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  101. void spi1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  102. void spi2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  103. void sdhc_isr(void) __attribute__ ((weak, alias("unused_isr")));
  104. void can0_message_isr(void) __attribute__ ((weak, alias("unused_isr")));
  105. void can0_bus_off_isr(void) __attribute__ ((weak, alias("unused_isr")));
  106. void can0_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  107. void can0_tx_warn_isr(void) __attribute__ ((weak, alias("unused_isr")));
  108. void can0_rx_warn_isr(void) __attribute__ ((weak, alias("unused_isr")));
  109. void can0_wakeup_isr(void) __attribute__ ((weak, alias("unused_isr")));
  110. void i2s0_tx_isr(void) __attribute__ ((weak, alias("unused_isr")));
  111. void i2s0_rx_isr(void) __attribute__ ((weak, alias("unused_isr")));
  112. void uart0_lon_isr(void) __attribute__ ((weak, alias("unused_isr")));
  113. void uart0_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  114. void uart0_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  115. void uart1_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  116. void uart1_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  117. void uart2_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  118. void uart2_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  119. void uart3_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  120. void uart3_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  121. void uart4_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  122. void uart4_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  123. void uart5_status_isr(void) __attribute__ ((weak, alias("unused_isr")));
  124. void uart5_error_isr(void) __attribute__ ((weak, alias("unused_isr")));
  125. void adc0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  126. void adc1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  127. void cmp0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  128. void cmp1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  129. void cmp2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  130. void ftm0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  131. void ftm1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  132. void ftm2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  133. void ftm3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  134. void cmt_isr(void) __attribute__ ((weak, alias("unused_isr")));
  135. void rtc_alarm_isr(void) __attribute__ ((weak, alias("unused_isr")));
  136. void rtc_seconds_isr(void) __attribute__ ((weak, alias("unused_isr")));
  137. void pit0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  138. void pit1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  139. void pit2_isr(void) __attribute__ ((weak, alias("unused_isr")));
  140. void pit3_isr(void) __attribute__ ((weak, alias("unused_isr")));
  141. void pdb_isr(void) __attribute__ ((weak, alias("unused_isr")));
  142. void usb_isr(void) __attribute__ ((weak, alias("unused_isr")));
  143. void usb_charge_isr(void) __attribute__ ((weak, alias("unused_isr")));
  144. void dac0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  145. void dac1_isr(void) __attribute__ ((weak, alias("unused_isr")));
  146. void tsi0_isr(void) __attribute__ ((weak, alias("unused_isr")));
  147. void mcg_isr(void) __attribute__ ((weak, alias("unused_isr")));
  148. void lptmr_isr(void) __attribute__ ((weak, alias("unused_isr")));
  149. void porta_isr(void) __attribute__ ((weak, alias("unused_isr")));
  150. void portb_isr(void) __attribute__ ((weak, alias("unused_isr")));
  151. void portc_isr(void) __attribute__ ((weak, alias("unused_isr")));
  152. void portd_isr(void) __attribute__ ((weak, alias("unused_isr")));
  153. void porte_isr(void) __attribute__ ((weak, alias("unused_isr")));
  154. void software_isr(void) __attribute__ ((weak, alias("unused_isr")));
  155. // TODO: create AVR-stype ISR() macro, with default linkage to undefined handler
  156. //
  157. __attribute__ ((section(".vectors"), used))
  158. void (* const gVectors[])(void) =
  159. {
  160. (void (*)(void))((unsigned long)&_estack), // 0 ARM: Initial Stack Pointer
  161. ResetHandler, // 1 ARM: Initial Program Counter
  162. nmi_isr, // 2 ARM: Non-maskable Interrupt (NMI)
  163. hard_fault_isr, // 3 ARM: Hard Fault
  164. memmanage_fault_isr, // 4 ARM: MemManage Fault
  165. bus_fault_isr, // 5 ARM: Bus Fault
  166. usage_fault_isr, // 6 ARM: Usage Fault
  167. fault_isr, // 7 --
  168. fault_isr, // 8 --
  169. fault_isr, // 9 --
  170. fault_isr, // 10 --
  171. svcall_isr, // 11 ARM: Supervisor call (SVCall)
  172. debugmonitor_isr, // 12 ARM: Debug Monitor
  173. fault_isr, // 13 --
  174. pendablesrvreq_isr, // 14 ARM: Pendable req serv(PendableSrvReq)
  175. systick_isr, // 15 ARM: System tick timer (SysTick)
  176. #if defined(_mk20dx128_) || defined(_mk20dx128vlf5_)
  177. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  178. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  179. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  180. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  181. dma_error_isr, // 20 DMA error interrupt channel
  182. unused_isr, // 21 DMA --
  183. flash_cmd_isr, // 22 Flash Memory Command complete
  184. flash_error_isr, // 23 Flash Read collision
  185. low_voltage_isr, // 24 Low-voltage detect/warning
  186. wakeup_isr, // 25 Low Leakage Wakeup
  187. watchdog_isr, // 26 Both EWM and WDOG interrupt
  188. i2c0_isr, // 27 I2C0
  189. spi0_isr, // 28 SPI0
  190. i2s0_tx_isr, // 29 I2S0 Transmit
  191. i2s0_rx_isr, // 30 I2S0 Receive
  192. uart0_lon_isr, // 31 UART0 CEA709.1-B (LON) status
  193. uart0_status_isr, // 32 UART0 status
  194. uart0_error_isr, // 33 UART0 error
  195. uart1_status_isr, // 34 UART1 status
  196. uart1_error_isr, // 35 UART1 error
  197. uart2_status_isr, // 36 UART2 status
  198. uart2_error_isr, // 37 UART2 error
  199. adc0_isr, // 38 ADC0
  200. cmp0_isr, // 39 CMP0
  201. cmp1_isr, // 40 CMP1
  202. ftm0_isr, // 41 FTM0
  203. ftm1_isr, // 42 FTM1
  204. cmt_isr, // 43 CMT
  205. rtc_alarm_isr, // 44 RTC Alarm interrupt
  206. rtc_seconds_isr, // 45 RTC Seconds interrupt
  207. pit0_isr, // 46 PIT Channel 0
  208. pit1_isr, // 47 PIT Channel 1
  209. pit2_isr, // 48 PIT Channel 2
  210. pit3_isr, // 49 PIT Channel 3
  211. pdb_isr, // 50 PDB Programmable Delay Block
  212. usb_isr, // 51 USB OTG
  213. usb_charge_isr, // 52 USB Charger Detect
  214. tsi0_isr, // 53 TSI0
  215. mcg_isr, // 54 MCG
  216. lptmr_isr, // 55 Low Power Timer
  217. porta_isr, // 56 Pin detect (Port A)
  218. portb_isr, // 57 Pin detect (Port B)
  219. portc_isr, // 58 Pin detect (Port C)
  220. portd_isr, // 59 Pin detect (Port D)
  221. porte_isr, // 60 Pin detect (Port E)
  222. software_isr, // 61 Software interrupt
  223. #elif defined(_mk20dx256_)
  224. dma_ch0_isr, // 16 DMA channel 0 transfer complete
  225. dma_ch1_isr, // 17 DMA channel 1 transfer complete
  226. dma_ch2_isr, // 18 DMA channel 2 transfer complete
  227. dma_ch3_isr, // 19 DMA channel 3 transfer complete
  228. dma_ch4_isr, // 20 DMA channel 4 transfer complete
  229. dma_ch5_isr, // 21 DMA channel 5 transfer complete
  230. dma_ch6_isr, // 22 DMA channel 6 transfer complete
  231. dma_ch7_isr, // 23 DMA channel 7 transfer complete
  232. dma_ch8_isr, // 24 DMA channel 8 transfer complete
  233. dma_ch9_isr, // 25 DMA channel 9 transfer complete
  234. dma_ch10_isr, // 26 DMA channel 10 transfer complete
  235. dma_ch11_isr, // 27 DMA channel 10 transfer complete
  236. dma_ch12_isr, // 28 DMA channel 10 transfer complete
  237. dma_ch13_isr, // 29 DMA channel 10 transfer complete
  238. dma_ch14_isr, // 30 DMA channel 10 transfer complete
  239. dma_ch15_isr, // 31 DMA channel 10 transfer complete
  240. dma_error_isr, // 32 DMA error interrupt channel
  241. unused_isr, // 33 --
  242. flash_cmd_isr, // 34 Flash Memory Command complete
  243. flash_error_isr, // 35 Flash Read collision
  244. low_voltage_isr, // 36 Low-voltage detect/warning
  245. wakeup_isr, // 37 Low Leakage Wakeup
  246. watchdog_isr, // 38 Both EWM and WDOG interrupt
  247. unused_isr, // 39 --
  248. i2c0_isr, // 40 I2C0
  249. i2c1_isr, // 41 I2C1
  250. spi0_isr, // 42 SPI0
  251. spi1_isr, // 43 SPI1
  252. unused_isr, // 44 --
  253. can0_message_isr, // 45 CAN OR'ed Message buffer (0-15)
  254. can0_bus_off_isr, // 46 CAN Bus Off
  255. can0_error_isr, // 47 CAN Error
  256. can0_tx_warn_isr, // 48 CAN Transmit Warning
  257. can0_rx_warn_isr, // 49 CAN Receive Warning
  258. can0_wakeup_isr, // 50 CAN Wake Up
  259. i2s0_tx_isr, // 51 I2S0 Transmit
  260. i2s0_rx_isr, // 52 I2S0 Receive
  261. unused_isr, // 53 --
  262. unused_isr, // 54 --
  263. unused_isr, // 55 --
  264. unused_isr, // 56 --
  265. unused_isr, // 57 --
  266. unused_isr, // 58 --
  267. unused_isr, // 59 --
  268. uart0_lon_isr, // 60 UART0 CEA709.1-B (LON) status
  269. uart0_status_isr, // 61 UART0 status
  270. uart0_error_isr, // 62 UART0 error
  271. uart1_status_isr, // 63 UART1 status
  272. uart1_error_isr, // 64 UART1 error
  273. uart2_status_isr, // 65 UART2 status
  274. uart2_error_isr, // 66 UART2 error
  275. unused_isr, // 67 --
  276. unused_isr, // 68 --
  277. unused_isr, // 69 --
  278. unused_isr, // 70 --
  279. unused_isr, // 71 --
  280. unused_isr, // 72 --
  281. adc0_isr, // 73 ADC0
  282. adc1_isr, // 74 ADC1
  283. cmp0_isr, // 75 CMP0
  284. cmp1_isr, // 76 CMP1
  285. cmp2_isr, // 77 CMP2
  286. ftm0_isr, // 78 FTM0
  287. ftm1_isr, // 79 FTM1
  288. ftm2_isr, // 80 FTM2
  289. cmt_isr, // 81 CMT
  290. rtc_alarm_isr, // 82 RTC Alarm interrupt
  291. rtc_seconds_isr, // 83 RTC Seconds interrupt
  292. pit0_isr, // 84 PIT Channel 0
  293. pit1_isr, // 85 PIT Channel 1
  294. pit2_isr, // 86 PIT Channel 2
  295. pit3_isr, // 87 PIT Channel 3
  296. pdb_isr, // 88 PDB Programmable Delay Block
  297. usb_isr, // 89 USB OTG
  298. usb_charge_isr, // 90 USB Charger Detect
  299. unused_isr, // 91 --
  300. unused_isr, // 92 --
  301. unused_isr, // 93 --
  302. unused_isr, // 94 --
  303. unused_isr, // 95 --
  304. unused_isr, // 96 --
  305. dac0_isr, // 97 DAC0
  306. unused_isr, // 98 --
  307. tsi0_isr, // 99 TSI0
  308. mcg_isr, // 100 MCG
  309. lptmr_isr, // 101 Low Power Timer
  310. unused_isr, // 102 --
  311. porta_isr, // 103 Pin detect (Port A)
  312. portb_isr, // 104 Pin detect (Port B)
  313. portc_isr, // 105 Pin detect (Port C)
  314. portd_isr, // 106 Pin detect (Port D)
  315. porte_isr, // 107 Pin detect (Port E)
  316. unused_isr, // 108 --
  317. unused_isr, // 109 --
  318. software_isr, // 110 Software interrupt
  319. #endif
  320. };
  321. //void usb_isr(void)
  322. //{
  323. //}
  324. __attribute__ ((section(".flashconfig"), used))
  325. const uint8_t flashconfigbytes[16] = {
  326. 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
  327. 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF
  328. };
  329. // Automatically initialize the RTC. When the build defines the compile
  330. // time, and the user has added a crystal, the RTC will automatically
  331. // begin at the time of the first upload.
  332. #ifndef TIME_T
  333. #define TIME_T 1349049600 // default 1 Oct 2012 (never used, Arduino sets this)
  334. #endif
  335. extern void rtc_set(unsigned long t);
  336. static void startup_unused_hook(void) {}
  337. void startup_early_hook(void) __attribute__ ((weak, alias("startup_unused_hook")));
  338. void startup_late_hook(void) __attribute__ ((weak, alias("startup_unused_hook")));
  339. __attribute__ ((section(".startup")))
  340. void ResetHandler(void)
  341. {
  342. #if defined(_mk20dx128vlf5_)
  343. /* Disable Watchdog */
  344. WDOG_UNLOCK = WDOG_UNLOCK_SEQ1;
  345. WDOG_UNLOCK = WDOG_UNLOCK_SEQ2;
  346. WDOG_STCTRLH = WDOG_STCTRLH_ALLOWUPDATE;
  347. /* FLL at 48MHz */
  348. MCG_C4 = MCG_C4_DMX32 | MCG_C4_DRST_DRS(1);
  349. /*
  350. MCG.c4.raw = ((struct MCG_C4_t){
  351. .drst_drs = MCG_DRST_DRS_MID,
  352. .dmx32 = 1
  353. }).raw;
  354. */
  355. SIM_SOPT2 = SIM_SOPT2_PLLFLLSEL;
  356. // release I/O pins hold, if we woke up from VLLS mode
  357. if (PMC_REGSC & PMC_REGSC_ACKISO) PMC_REGSC |= PMC_REGSC_ACKISO;
  358. uint32_t *src = &_etext;
  359. uint32_t *dest = &_sdata;
  360. unsigned int i;
  361. while (dest < &_edata) *dest++ = *src++;
  362. dest = &_sbss;
  363. while (dest < &_ebss) *dest++ = 0;
  364. SCB_VTOR = 0; // use vector table in flash
  365. // default all interrupts to medium priority level
  366. for (i=0; i < NVIC_NUM_INTERRUPTS; i++) NVIC_SET_PRIORITY(i, 128);
  367. __enable_irq();
  368. __libc_init_array();
  369. //memcpy(&_sdata, &_sidata, (uintptr_t)&_edata - (uintptr_t)&_sdata);
  370. //memset(&_sbss, 0, (uintptr_t)&_ebss - (uintptr_t)&_sbss);
  371. #else
  372. uint32_t *src = &_etext;
  373. uint32_t *dest = &_sdata;
  374. unsigned int i;
  375. WDOG_UNLOCK = WDOG_UNLOCK_SEQ1;
  376. WDOG_UNLOCK = WDOG_UNLOCK_SEQ2;
  377. WDOG_STCTRLH = WDOG_STCTRLH_ALLOWUPDATE;
  378. startup_early_hook();
  379. // enable clocks to always-used peripherals
  380. #if defined(_mk20dx128_) || defined(_mk20dx128vlf5_)
  381. SIM_SCGC5 = 0x00043F82; // clocks active to all GPIO
  382. SIM_SCGC6 = SIM_SCGC6_RTC | SIM_SCGC6_FTM0 | SIM_SCGC6_FTM1 | SIM_SCGC6_ADC0 | SIM_SCGC6_FTFL;
  383. #elif defined(_mk20dx256_)
  384. SIM_SCGC3 = SIM_SCGC3_ADC1 | SIM_SCGC3_FTM2;
  385. SIM_SCGC5 = 0x00043F82; // clocks active to all GPIO
  386. SIM_SCGC6 = SIM_SCGC6_RTC | SIM_SCGC6_FTM0 | SIM_SCGC6_FTM1 | SIM_SCGC6_ADC0 | SIM_SCGC6_FTFL;
  387. #endif
  388. // if the RTC oscillator isn't enabled, get it started early
  389. if (!(RTC_CR & RTC_CR_OSCE)) {
  390. RTC_SR = 0;
  391. RTC_CR = RTC_CR_SC16P | RTC_CR_SC4P | RTC_CR_OSCE;
  392. }
  393. // release I/O pins hold, if we woke up from VLLS mode
  394. if (PMC_REGSC & PMC_REGSC_ACKISO) PMC_REGSC |= PMC_REGSC_ACKISO;
  395. // TODO: do this while the PLL is waiting to lock....
  396. while (dest < &_edata) *dest++ = *src++;
  397. dest = &_sbss;
  398. while (dest < &_ebss) *dest++ = 0;
  399. SCB_VTOR = 0; // use vector table in flash
  400. // default all interrupts to medium priority level
  401. for (i=0; i < NVIC_NUM_INTERRUPTS; i++) NVIC_SET_PRIORITY(i, 128);
  402. // start in FEI mode
  403. // enable capacitors for crystal
  404. OSC0_CR = OSC_SC8P | OSC_SC2P;
  405. // enable osc, 8-32 MHz range, low power mode
  406. MCG_C2 = MCG_C2_RANGE0(2) | MCG_C2_EREFS;
  407. // switch to crystal as clock source, FLL input = 16 MHz / 512
  408. MCG_C1 = MCG_C1_CLKS(2) | MCG_C1_FRDIV(4);
  409. // wait for crystal oscillator to begin
  410. while ((MCG_S & MCG_S_OSCINIT0) == 0) ;
  411. // wait for FLL to use oscillator
  412. while ((MCG_S & MCG_S_IREFST) != 0) ;
  413. // wait for MCGOUT to use oscillator
  414. while ((MCG_S & MCG_S_CLKST_MASK) != MCG_S_CLKST(2)) ;
  415. // now we're in FBE mode
  416. // config PLL input for 16 MHz Crystal / 4 = 4 MHz
  417. MCG_C5 = MCG_C5_PRDIV0(3);
  418. // config PLL for 96 MHz output
  419. MCG_C6 = MCG_C6_PLLS | MCG_C6_VDIV0(0);
  420. // wait for PLL to start using xtal as its input
  421. while (!(MCG_S & MCG_S_PLLST)) ;
  422. // wait for PLL to lock
  423. while (!(MCG_S & MCG_S_LOCK0)) ;
  424. // now we're in PBE mode
  425. #if F_CPU == 96000000
  426. // config divisors: 96 MHz core, 48 MHz bus, 24 MHz flash
  427. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(0) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(3);
  428. #elif F_CPU == 48000000
  429. // config divisors: 48 MHz core, 48 MHz bus, 24 MHz flash
  430. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(1) | SIM_CLKDIV1_OUTDIV2(1) | SIM_CLKDIV1_OUTDIV4(3);
  431. #elif F_CPU == 24000000
  432. // config divisors: 24 MHz core, 24 MHz bus, 24 MHz flash
  433. SIM_CLKDIV1 = SIM_CLKDIV1_OUTDIV1(3) | SIM_CLKDIV1_OUTDIV2(3) | SIM_CLKDIV1_OUTDIV4(3);
  434. #else
  435. #error "Error, F_CPU must be 96000000, 48000000, or 24000000"
  436. #endif
  437. // switch to PLL as clock source, FLL input = 16 MHz / 512
  438. MCG_C1 = MCG_C1_CLKS(0) | MCG_C1_FRDIV(4);
  439. // wait for PLL clock to be used
  440. while ((MCG_S & MCG_S_CLKST_MASK) != MCG_S_CLKST(3)) ;
  441. // now we're in PEE mode
  442. // configure USB for 48 MHz clock
  443. SIM_CLKDIV2 = SIM_CLKDIV2_USBDIV(1); // USB = 96 MHz PLL / 2
  444. // USB uses PLL clock, trace is CPU clock, CLKOUT=OSCERCLK0
  445. SIM_SOPT2 = SIM_SOPT2_USBSRC | SIM_SOPT2_PLLFLLSEL | SIM_SOPT2_TRACECLKSEL | SIM_SOPT2_CLKOUTSEL(6);
  446. // initialize the SysTick counter
  447. SYST_RVR = (F_CPU / 1000) - 1;
  448. SYST_CSR = SYST_CSR_CLKSOURCE | SYST_CSR_TICKINT | SYST_CSR_ENABLE;
  449. //init_pins();
  450. __enable_irq();
  451. //_init_Teensyduino_internal_(); XXX HaaTa - Why is this here? Perhaps fixed in a new version of the API?
  452. //if (RTC_SR & RTC_SR_TIF) rtc_set(TIME_T); XXX HaaTa - We don't care about the rtc
  453. __libc_init_array();
  454. /*
  455. for (ptr = &__init_array_start; ptr < &__init_array_end; ptr++) {
  456. (*ptr)();
  457. }
  458. */
  459. startup_late_hook();
  460. #endif
  461. main();
  462. while (1) ;
  463. }
  464. // TODO: is this needed for c++ and where does it come from?
  465. /*
  466. void _init(void)
  467. {
  468. }
  469. */
  470. char *__brkval = (char *)&_ebss;
  471. void * _sbrk(int incr)
  472. {
  473. //static char *heap_end = (char *)&_ebss;
  474. //char *prev = heap_end;
  475. //heap_end += incr;
  476. char *prev = __brkval;
  477. __brkval += incr;
  478. return prev;
  479. }
  480. __attribute__((weak))
  481. int _read(int file, char *ptr, int len)
  482. {
  483. return 0;
  484. }
  485. /* moved to Print.cpp, to support Print::printf()
  486. __attribute__((weak))
  487. int _write(int file, char *ptr, int len)
  488. {
  489. return 0;
  490. }
  491. */
  492. __attribute__((weak))
  493. int _close(int fd)
  494. {
  495. return -1;
  496. }
  497. #include <sys/stat.h>
  498. __attribute__((weak))
  499. int _fstat(int fd, struct stat *st)
  500. {
  501. st->st_mode = S_IFCHR;
  502. return 0;
  503. }
  504. __attribute__((weak))
  505. int _isatty(int fd)
  506. {
  507. return 1;
  508. }
  509. __attribute__((weak))
  510. int _lseek(int fd, long long offset, int whence)
  511. {
  512. return -1;
  513. }
  514. __attribute__((weak))
  515. void _exit(int status)
  516. {
  517. while (1);
  518. }
  519. __attribute__((weak))
  520. void __cxa_pure_virtual()
  521. {
  522. while (1);
  523. }
  524. __attribute__((weak))
  525. int __cxa_guard_acquire (int *g)
  526. {
  527. return 1;
  528. }
  529. __attribute__((weak))
  530. void __cxa_guard_release(int *g)
  531. {
  532. }
  533. int nvic_execution_priority(void)
  534. {
  535. int priority=256;
  536. uint32_t primask, faultmask, basepri, ipsr;
  537. // full algorithm in ARM DDI0403D, page B1-639
  538. // this isn't quite complete, but hopefully good enough
  539. asm volatile("mrs %0, faultmask\n" : "=r" (faultmask)::);
  540. if (faultmask) return -1;
  541. asm volatile("mrs %0, primask\n" : "=r" (primask)::);
  542. if (primask) return 0;
  543. asm volatile("mrs %0, ipsr\n" : "=r" (ipsr)::);
  544. if (ipsr) {
  545. if (ipsr < 16) priority = 0; // could be non-zero
  546. else priority = NVIC_GET_PRIORITY(ipsr - 16);
  547. }
  548. asm volatile("mrs %0, basepri\n" : "=r" (basepri)::);
  549. if (basepri > 0 && basepri < priority) priority = basepri;
  550. return priority;
  551. }